ReferenceAddresses
Add order address
Add an address to a customer order, authorise with basic auth
POST
/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
type?string | null
title?string | null
firstName?string | null
lastName?string | null
companyName?string | null
addressLine1?string | null
addressLine2?string | null
addressLine3?string | null
city?string | null
county?string | null
postcode?string | null
stateName?string | null
countryIso?string | null
phone?string | null
customerGuid?string | null
Response Body
curl -X POST "https://loading/v1/orders/string/addresses" \ -H "Content-Type: application/json" \ -d '{}'
{
"success": true,
"errors": [
{
"description": "string"
}
],
"orderAddressId": 0,
"countryId": 0
}
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?