docs.remarkable.net
ReferenceAddresses

Get Order Addresses

Get all the addresses currently assigned for an order. Useful to show on a confirmation page. Authorise with query auth

GET/v1/orders/{reference}/addresses
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

Path Parameters

referencestring

Query Parameters

username?string
token?string
emailAddress?string

Response Body

curl -X GET "https://loading/v1/orders/string/addresses?username=string&token=string&emailAddress=string"
[
  {
    "addressId": 0,
    "title": "string",
    "firstName": "string",
    "lastName": "string",
    "addressLine1": "string",
    "addressLine2": "string",
    "addressLine3": "string",
    "city": "string",
    "country": "string",
    "county": "string",
    "type": "string",
    "companyName": "string",
    "postCode": "string",
    "countryIso": "string"
  }
]
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?