POST api/Landing/AddressesList
Request Information
URI Parameters
None.
Body Parameters
CustomerParamName | Description | Type | Additional information |
---|---|---|---|
CustomerID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerID": 1 }
application/xml, text/xml
Sample:
<CustomerParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain"> <CustomerID>1</CustomerID> </CustomerParam>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
APIResponseName | Description | Type | Additional information |
---|---|---|---|
Errors | APIErrors |
None. |
Response Formats
application/json, text/json
Sample:
{ "Errors": { "HasErrors": true, "ErrorList": [ { "Message": "sample string 1", "Source": "sample string 2" }, { "Message": "sample string 1", "Source": "sample string 2" } ] } }
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain"> <Errors> <ErrorList> <APIErrorMessage> <Message>sample string 1</Message> <Source>sample string 2</Source> </APIErrorMessage> <APIErrorMessage> <Message>sample string 1</Message> <Source>sample string 2</Source> </APIErrorMessage> </ErrorList> <HasErrors>true</HasErrors> </Errors> </APIResponse>