Change password with code
POST /api/v1/users/forget-password/change/:code/public
Description
Change the user's password using a code.
Headers:
- Content-Type: application/json
- ApiKey: The platform api key is required to use this endpoint -
{{platformApiKey}}
URL: /api/v1/users/forget-password/change/:code/public
-
Variable:
- Key:
code(Required)- Value:
- Key:
Response: The response is "Created" with a code of 201.
/api/v1/users/forget-password/change/:code/public
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"code": "<string>",
"password": "<string>"
}
Response: 201
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/users/forget-password/change/:code/public \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!