To retrieve the shipping address associated with your account, make a GET request to the Retrieve Shipping Address API with the following requirements:
GET https://api.farnell.com/order/shipping_address
Request Headers
Name | Description |
api_key required * |
your_generated_api_key To generate your API key, follow the instructions on the Order API Registration page. |
authorization required * |
your_jwt_token To get your JWT token for authorization, use the Generate JWT Authentication Token API. |
Request Attributes
No request attributes are required for this endpoint
Response
Code 200
{
"address": [
{
"addressId": "<Address ID>",
"nickName": "<Address Name Identifier>",
"organizationName": "<Company Name>",
"attention": "<For the Attention of>",
"addressLine1": "<Address Line 1>",
"addressLine2": "<Address Line 2>",
"addressLine3": "<Address Line 3>",
"city": "<City Name>",
"postalCode": "<Postal Code>",
"region": "<Country/State/Province>",
"country": "<Country Name>"
}
]
}