Resets the password for a client's account
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"new_password": "string"
}
Request Code Samples
curl --location 'https://api.ffdemo.ufp.ai/tenants//clients//reset_password' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"new_password": "string"
}'
Modified at 2025-03-21 07:23:14