POST api/Address/SaveAddress

Request Information

URI Parameters

None.

Body Parameters

CustomAddress
NameDescriptionTypeAdditional information
parentid

string

None.

customeraddressid

string

None.

bits_shippingaddressname

string

None.

bits_shippingaddressline1

string

None.

bits_shippingaddressline2

string

None.

bits_shippingaddresscity

string

None.

bits_shippingaddressstateorprovince

string

None.

bits_shippingaddresspostalcode

string

None.

bits_shippingaddresscountry

string

None.

bits_defaultcustomeraddress

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "parentid": "sample string 1",
  "customeraddressid": "sample string 2",
  "bits_shippingaddressname": "sample string 3",
  "bits_shippingaddressline1": "sample string 4",
  "bits_shippingaddressline2": "sample string 5",
  "bits_shippingaddresscity": "sample string 6",
  "bits_shippingaddressstateorprovince": "sample string 7",
  "bits_shippingaddresspostalcode": "sample string 8",
  "bits_shippingaddresscountry": "sample string 9",
  "bits_defaultcustomeraddress": true
}

application/xml, text/xml

Sample:
<CustomAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microservices.Application.QuickQuote.Entities">
  <bits_defaultcustomeraddress>true</bits_defaultcustomeraddress>
  <bits_shippingaddresscity>sample string 6</bits_shippingaddresscity>
  <bits_shippingaddresscountry>sample string 9</bits_shippingaddresscountry>
  <bits_shippingaddressline1>sample string 4</bits_shippingaddressline1>
  <bits_shippingaddressline2>sample string 5</bits_shippingaddressline2>
  <bits_shippingaddressname>sample string 3</bits_shippingaddressname>
  <bits_shippingaddresspostalcode>sample string 8</bits_shippingaddresspostalcode>
  <bits_shippingaddressstateorprovince>sample string 7</bits_shippingaddressstateorprovince>
  <customeraddressid>sample string 2</customeraddressid>
  <parentid>sample string 1</parentid>
</CustomAddress>

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.