docs.remarkable.net
EmailPasswordsReset

Reset Password

Reset a user password using the password token generated previously. Authorise with basic auth

POST/v1/customers/{email}/passwords/reset
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
token?string | null
newPassword?string | null

Response Body

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

How is this guide?