POST api/CustomerAddressDelete

Request Information

URI Parameters

None.

Body Parameters

CustomerAddress
NameDescriptionTypeAdditional information
ADDRESS_ID

integer

None.

ACTION_TYPE

string

None.

CUSTOMER_NAME

string

None.

CUSTOMER_PHONE

string

None.

CUSTOMER_ID

integer

None.

CUSTOMER_ADDRESS

string

None.

CUSTOMER_CITY

string

None.

CUSTOMER_STATE

string

None.

CUSTOMER_PINCODE

string

None.

IS_DEFAULT

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ADDRESS_ID": 1,
  "ACTION_TYPE": "sample string 1",
  "CUSTOMER_NAME": "sample string 2",
  "CUSTOMER_PHONE": "sample string 3",
  "CUSTOMER_ID": 4,
  "CUSTOMER_ADDRESS": "sample string 5",
  "CUSTOMER_CITY": "sample string 6",
  "CUSTOMER_STATE": "sample string 7",
  "CUSTOMER_PINCODE": "sample string 8",
  "IS_DEFAULT": true
}

application/xml, text/xml

Sample:
<CustomerAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAL.BEEntities">
  <ACTION_TYPE>sample string 1</ACTION_TYPE>
  <ADDRESS_ID>1</ADDRESS_ID>
  <CUSTOMER_ADDRESS>sample string 5</CUSTOMER_ADDRESS>
  <CUSTOMER_CITY>sample string 6</CUSTOMER_CITY>
  <CUSTOMER_ID>4</CUSTOMER_ID>
  <CUSTOMER_NAME>sample string 2</CUSTOMER_NAME>
  <CUSTOMER_PHONE>sample string 3</CUSTOMER_PHONE>
  <CUSTOMER_PINCODE>sample string 8</CUSTOMER_PINCODE>
  <CUSTOMER_STATE>sample string 7</CUSTOMER_STATE>
  <IS_DEFAULT>true</IS_DEFAULT>
</CustomerAddress>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.