POST api/Address/AddressPartialUpdate
Request Information
URI Parameters
None.
Body Parameters
AddressPartialUpdateRequestName | 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": "c2953817-aa4a-4599-b5d6-f4dd47a3e93c", "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>c2953817-aa4a-4599-b5d6-f4dd47a3e93c</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>