Company logoTrust Center Documentation
API v1 ReferenceReset password

Reset password with token

Reset password with token for the Orbiq Trust Center. Browse request parameters, authentication requirements, response payloads, and working code samples in…

POST
/api/v1/reset-password

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://app.orbiqhq.com/api/v1/reset-password" \  -H "Content-Type: application/json" \  -d '{    "token": "string",    "password": "pa$$word"  }'
{
  "ok": true,
  "message": "Password updated successfully."
}
{
  "error": "string"
}
{
  "error": "string"
}

How is this guide?