GET
/v1/mgmt/tenant/all

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

curl -X GET "https://api.descope.com/v1/mgmt/tenant/all" \
  -H "Authorization: Bearer <token>"

OK

{
  "tenants": [
    {
      "id": "string",
      "name": "string",
      "selfProvisioningDomains": [
        "string"
      ],
      "customAttributes": {},
      "authType": "string",
      "domains": [
        "string"
      ],
      "createdTime": 0,
      "disabled": true,
      "enforceSSO": true
    }
  ]
}

Was this helpful?