Reset Password
This API resets password for the user on the Indee platform.
The authorization header must carry the API key that was provided during application registration.
Header |
Value |
Authorization |
Bearer api_key |
Endpoint
POST /v2/watch/auth/reset-password
Request Body
{
"reset_code": "01j1ak6a8ytnsv0hrsgbkbfntv",
"new_password": "abcd1234"
}
Parameter |
Type |
Description |
reset_code |
String |
The unique identifier of a password reset request. This is sent to the user in an email as a part of the reset link. |
new_password |
Object |
The new password set by the user. |
Response Body
{
"status_code": "W0000",
"message": ""
}
Field |
Type |
Description |
status_code |
Integer |
The Indee API status code. See the full list of codes in the Status Codes section. |