docs.remarkable.net
IdAddressesAddressid

Delete a customers address

Delete a customers address based on the customer GUID and addressId. Authorize with a JWT token

DELETE/v1/customers/{id}/addresses/{addressid}
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
addressidinteger
Formatint32

Response Body

curl -X DELETE "https://loading/v1/customers/string/addresses/0"
{
  "success": true,
  "errors": [
    {
      "description": "string"
    }
  ]
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?