GET api/ShippingAddress/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Ship2Address| Name | Description | Type | Additional 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. |
Response 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"
}
application/xml, text/xml
Sample:
<Ship2Address xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADIGlobal.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>