API ReferenceManagementThird Party Apps
GET
/v1/mgmt/thirdparty/apps/load

Loads all project third party applications, using a valid management key.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/thirdparty/apps/load

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Status codeDescription
200OK
curl -X GET "https://api.descope.com/v1/mgmt/thirdparty/apps/load" \
  -H "Authorization: Bearer <ProjectId:ManagementKey>"

{
  "apps": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "clientId": "string",
      "logo": "string",
      "loginPageUrl": "string",
      "approvedCallbackUrls": [
        "string"
      ],
      "permissionsScopes": [
        {
          "name": "string",
          "description": "string",
          "optional": true,
          "values": [
            "string"
          ]
        }
      ],
      "attributesScopes": [
        {
          "name": "string",
          "description": "string",
          "optional": true,
          "values": [
            "string"
          ]
        }
      ]
    }
  ]
}

Was this helpful?