POST api/Address/DeleteAddress

Request Information

URI Parameters

None.

Body Parameters

DeleteAddressRequest
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "0476ca61-008e-46e7-94ee-e6ffbd1fac73",
  "UserId": "db96f027-6332-429e-90f9-4cec2fd11387"
}

application/xml, text/xml

Sample:
<DeleteAddressRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <Id>0476ca61-008e-46e7-94ee-e6ffbd1fac73</Id>
  <UserId>db96f027-6332-429e-90f9-4cec2fd11387</UserId>
</DeleteAddressRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UpdateAddressResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

SetAlsoAsBillingAddressId

globally unique identifier

None.

Message

string

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "2da639e1-45ea-49a1-800d-0637d861a266",
  "SetAlsoAsBillingAddressId": "0657ca82-d9af-44c0-9858-90a5cc2d40c2",
  "Message": "sample string 3",
  "Success": true
}

application/xml, text/xml

Sample:
<UpdateAddressResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <Id>2da639e1-45ea-49a1-800d-0637d861a266</Id>
  <Message>sample string 3</Message>
  <SetAlsoAsBillingAddressId>0657ca82-d9af-44c0-9858-90a5cc2d40c2</SetAlsoAsBillingAddressId>
  <Success>true</Success>
</UpdateAddressResponse>