PUT request/water/customer/{customerid}/quote/{quoteid}/transfer/user

Any Authorised user can change the quote transfer (lock or unlock) any his assigned pending quote for override saying the quote is picked by this user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerid

string

None.

quoteid

integer

Required

Body Parameters

QuoteTransferPut
NameDescriptionTypeAdditional information
IsLocked

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "isLocked": true
}

text/html

Sample:
{"isLocked":true}

application/xml, text/xml

Sample:
<QuoteTransferPut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.WaterQuote">
  <IsLocked>true</IsLocked>
</QuoteTransferPut>

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>