POST
/v1/mgmt/user/password/set/active

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 an active password for an existing user, using a valid management key.

This API endpoint allows you to set an active password for an existing user. This will allow the user to authenticate with this password without changing it.

See also

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