ApiManagementUsers
POST
/v1/mgmt/family/impersonate/stopAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Request Body
application/json
jwt?string
customClaims?object
Custom claims to include in the JWT as key-value pairs. Keys must be strings; values can be strings, numbers, or booleans.
Example
{
"claim-name": "claim-value"
}refreshDuration?integer
Format
int32Stop impersonating a family dependent and return to the acting admin's own session
curl -X POST "https://api.descope.com/v1/mgmt/family/impersonate/stop" \ -H "Content-Type: application/json" \ -d '{}'{ "jwt": "string"}export interface Response {jwt?: string} Was this helpful?