API Reference/Management/Third Party Apps
GET
/v1/mgmt/thirdparty/apps/load

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

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

OK

{
  "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?