API Reference/Management/Tenants/Admin Links
POST
/v2/mgmt/tenant/adminlinks/sso/generate

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

application/jsonRequired
tenantIdstring
expireTimestring
emailstring
ssoIdstring
curl -X POST "https://api.descope.com/v2/mgmt/tenant/adminlinks/sso/generate" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "tenantId": "string",
    "expireTime": "string",
    "email": "string",
    "ssoId": "string"
  }'

OK

{
  "adminSSOConfigurationLink": "string"
}

Was this helpful?