docs.remarkable.net
IdAddresses

Create a customers address

Create a new customer address using the customer GUID. Authorise with a JWT

POST/v1/customers/{id}/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

idstring
title?string | null
firstName?string | null
lastName?string | null
addressLine1?string | null
addressLine2?string | null
addressLine3?string | null
city?string | null
postcode?string | null
county?string | null
countryIso?string | null
stateName?string | null
companyName?string | null

Response Body

curl -X POST "https://loading/v1/customers/string/addresses" \  -H "Content-Type: application/json" \  -d '{}'
{
  "success": true,
  "errors": [
    {
      "description": "string"
    }
  ]
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?