POST api/ShippingAddress

Request Information

URI Parameters

None.

Body Parameters

Ship2Address
NameDescriptionTypeAdditional information
ship2id

integer

None.

btxId

integer

None.

company

string

None.

street_1

string

None.

street_2

string

None.

telephone

string

None.

country

string

None.

region

string

None.

city

string

None.

zip

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ship2id": 1,
  "btxId": 2,
  "company": "sample string 3",
  "street_1": "sample string 4",
  "street_2": "sample string 5",
  "telephone": "sample string 6",
  "country": "sample string 7",
  "region": "sample string 8",
  "city": "sample string 9",
  "zip": "sample string 10"
}

text/xml

Sample:
<Ship2Address xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagentoAPI.Models">
  <btxId>2</btxId>
  <city>sample string 9</city>
  <company>sample string 3</company>
  <country>sample string 7</country>
  <region>sample string 8</region>
  <ship2id>1</ship2id>
  <street_1>sample string 4</street_1>
  <street_2>sample string 5</street_2>
  <telephone>sample string 6</telephone>
  <zip>sample string 10</zip>
</Ship2Address>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.