POST api/Address/AddressPartialUpdate
Request Information
URI Parameters
None.
Body Parameters
AddressPartialUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| GsmNumber | string |
None. |
|
| AddressId | globally unique identifier |
None. |
|
| IsSetZipCode | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"GsmNumber": "sample string 1",
"AddressId": "518394a9-9124-4880-9e66-25c1d90891b8",
"IsSetZipCode": true
}
application/xml, text/xml
Sample:
<AddressPartialUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <AddressId>518394a9-9124-4880-9e66-25c1d90891b8</AddressId> <GsmNumber>sample string 1</GsmNumber> <IsSetZipCode>true</IsSetZipCode> </AddressPartialUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>