POST
/v1/mgmt/stop/impersonation

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

jwt?string
selectedTenant?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
Formatint32

Stop impersonation as a different user

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