Header name | Description |
---|---|
Content-Type required |
application/json |
X-API-KEY required |
YOUR_API_KEY |
Param name | Description |
---|---|
token required |
Reset password token Validations:
|
// Bad request GET /api/v2/tokens/reset_password_token?token=cOmPlEtElYiNvAlIdToKeN12345 400 { "error": "Invalid token" }
// Bad request GET /api/v2/tokens/reset_password_token?token=SrNNUsbtAYreetNdChfZ 400 { "error": "Expired token" }
// Successful request GET /api/v2/tokens/reset_password_token?token=D_LBYjB_nmgXZGoB8zCx 200 { "email": "admin-user-39@example.com" }
Code | Description |
---|---|
401 | Unauthorized |
404 | Not found |
500 | Internal Server Error |
422 | Missing parameters |
Header name | Description |
---|---|
Content-Type required |
application/json |
X-API-KEY required |
YOUR_API_KEY |
Param name | Description |
---|---|
token required |
Confirmation token Validations:
|
// Bad request GET /api/v2/tokens/confirmation_token?token=cOmPlEtElYiNvAlIdToKeN12345 400 { "error": "Invalid token" }
// Bad request GET /api/v2/tokens/confirmation_token?token=kuDMa9jdfsdiZD-jxygG 400 { "error": "Invitation expired" }
// Successful request GET /api/v2/tokens/confirmation_token?token=RyvW5dySA6zvqYUr-azw 200 { "email": "admin-user-37@example.com" }
Code | Description |
---|---|
401 | Unauthorized |
404 | Not found |
500 | Internal Server Error |
422 | Missing parameters |