docs.remarkable.net
IdDetails

Update Customer

Update customers personal details, based off the customer GUID. Authorise with a JWT

PUT/v1/customers/{id}/details
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
emailAddress?string | null
mobileNumber?string | null
dob?string | null
Formatdate-time
storeId?integer | null
Formatint32
emailSubscribed?boolean | null

Response Body

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

How is this guide?