Generate a new reset password token for this user
Request
Body Params application/json
{
"formFields": [
{
"id": "email",
"value": "test@email.com"
}
]
}
Request Code Samples
curl --location --request POST 'http://localhost:8000//<tenantId>/user/password/reset/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"formFields": [
{
"id": "email",
"value": "test@email.com"
}
]
}'
Responses
application/json
Generate a new reset password token for this user
Modified at 2024-10-01 07:35:40