POST
/v1/mgmt/user/password/set/temporary

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

loginId?string
password?string

Set a temporary password for an existing user, using a valid management key.

This API endpoint allows you to set a temporary password for an existing user. This will require the user to change their password on next authentication.

See also

curl -X POST "https://api.descope.com/v1/mgmt/user/password/set/temporary" \  -H "Content-Type: application/json" \  -d '{}'
{  "cleartext": "string"}
export interface Response {cleartext?: string}
Was this helpful?