docs.remarkable.net
EmailPasswords

Get password token

Generate a token that can be passed to a user to allow them to reset their password. Authorise with basic auth

POST/v1/customers/{email}/passwords
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

Path Parameters

emailstring
returnUrl?string | null
webSiteUrl?string | null

Response Body

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

How is this guide?