docs.remarkable.net
ReferenceAddressesId

Update an order address

Updates an address for an order, authorise with basic auth

PUT/v1/orders/{reference}/addresses/{id}
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
idinteger
Formatint32
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 PUT "https://loading/v1/orders/string/addresses/0" \  -H "Content-Type: application/json" \  -d '{}'
{
  "success": true,
  "errors": [
    {
      "description": "string"
    }
  ],
  "orderAddressId": 0
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?