POST api/Customer/UpdateCustomerDeliveryAddress
Documentation for 'UpdateCustomerDeliveryAddress'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | Documentation for 'model'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"API_KEY": "sample string 1",
"company_id": "sample string 2",
"customer_id": "sample string 3",
"delivery_address": [
{
"description": "sample string 1"
},
{
"description": "sample string 1"
},
{
"description": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<CustomerAddressModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ISCMobileApp_API.Models">
<API_KEY>sample string 1</API_KEY>
<company_id>sample string 2</company_id>
<customer_id>sample string 3</customer_id>
<delivery_address>
<delivery_address>
<description>sample string 1</description>
</delivery_address>
<delivery_address>
<description>sample string 1</description>
</delivery_address>
<delivery_address>
<description>sample string 1</description>
</delivery_address>
</delivery_address>
</CustomerAddressModel>
application/x-www-form-urlencoded
Sample:
Sample not available.