POST api/Address/AddressPartialUpdate

Request Information

URI Parameters

None.

Body Parameters

AddressPartialUpdateRequest
NameDescriptionTypeAdditional information
GsmNumber

string

None.

AddressId

globally unique identifier

None.

IsSetZipCode

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "GsmNumber": "sample string 1",
  "AddressId": "d2ad14d1-072f-4548-a2e8-b3fa07204a02",
  "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>d2ad14d1-072f-4548-a2e8-b3fa07204a02</AddressId>
  <GsmNumber>sample string 1</GsmNumber>
  <IsSetZipCode>true</IsSetZipCode>
</AddressPartialUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

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