docs.remarkable.net
Token

Generate a JWT Token

Generate a JWT Token for use in other endpoints involving user data. Requires the customers log in credentials, and returns a token.

POST/v1/auth/token
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

emailAddress?string | null
password?string | null

Response Body

curl -X POST "https://loading/v1/auth/token" \  -H "Content-Type: application/json" \  -d '{}'
{
  "token": "string",
  "expiry": "2019-08-24T14:15:22Z",
  "customerGuid": "string"
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?