POST api/insertCustomerDeliveryAddress

Request Information

URI Parameters

None.

Body Parameters

CustomerDeliveryAddressRequest
NameDescriptionTypeAdditional information
CustomerID

integer

None.

DeliveryAddress

string

None.

ContactPerson

string

None.

ContactNo

integer

None.

City

integer

None.

Status

string

None.

DepotCode

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerID": 1,
  "DeliveryAddress": "sample string 2",
  "ContactPerson": "sample string 3",
  "ContactNo": 4,
  "City": 5,
  "Status": "sample string 6",
  "DepotCode": 7
}

application/xml, text/xml

Sample:
<DepotManagementController.CustomerDeliveryAddressRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DepotManagement.Controllers">
  <City>5</City>
  <ContactNo>4</ContactNo>
  <ContactPerson>sample string 3</ContactPerson>
  <CustomerID>1</CustomerID>
  <DeliveryAddress>sample string 2</DeliveryAddress>
  <DepotCode>7</DepotCode>
  <Status>sample string 6</Status>
</DepotManagementController.CustomerDeliveryAddressRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.