DocsAPI ReferenceAccount/bff/account/reset-password
postAccountAdmin BFF

/bff/account/reset-password

Sets a new password using a reset token received via email.

AccountpostBffAccountReset-password

Parameters

3 body

3 total
Body · 3
tokenstringRequired

Password reset token from the email link.

passwordInputstringRequired

New password.

passwordAgainstringRequired

New password confirmation (must match passwordInput).

Request

POST /bff/account/reset-password

post
curl -X POST "https://api.bizkithub.com/bff/account/reset-password" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "token": "example_token",
  "passwordInput": "example_passwordInput",
  "passwordAgain": "example_passwordAgain"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key