Account Passwords
No description given.
Endpoints
post /api/v3/iam/account/passwords/request_reset post /api/v3/iam/account/passwords/reset get /api/v3/iam/account/passwords/token_valid
post/api/v3/iam/account/passwords/request_reset
Request a password reset for an account.
This endpoint will send an email with a reset token to the provided email address if an account with that email exists.
Input Schema
object
email: string
Typescript
type InputSchema = { email: string };
post/api/v3/iam/account/passwords/reset
Reset a password using a reset token.
This endpoint will change the password for the account associated with the provided reset token if the token is valid and not expired.
Password requirements:
- Minimum 8 characters
- At least one uppercase letter
- At least one lowercase letter
- At least one digit
- At least one special character
Input Schema
object
token: string
password: string
Typescript
type InputSchema = { token: string; password: string };
get/api/v3/iam/account/passwords/token_valid
Check if a password reset token is valid.
This endpoint will verify if the provided token exists and has not expired. It returns a boolean indicating whether the token is valid.
Input Schema
object
token: string
Typescript
type InputSchema = { token: string };
Output Schema
object
valid: boolean
Typescript
type OutputSchema = { valid: boolean };