API Reference/Management/Inbound Apps
GET
/v1/mgmt/thirdparty/app/load

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Query Parameters

idstring
clientIdstring
curl -X GET "https://api.descope.com/v1/mgmt/thirdparty/app/load?id=string&clientId=string" \
  -H "Authorization: Bearer <token>"

OK

{
  "app": {
    "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"
        ]
      }
    ],
    "dynamic": true,
    "status": "string",
    "logoUrl": "string",
    "jwtBearerSettings": {
      "issuers": {
        "property1": {
          "jwksUri": "string",
          "signAlgorithm": "string",
          "userInfoUri": "string",
          "externalIdFieldName": "string"
        },
        "property2": {
          "jwksUri": "string",
          "signAlgorithm": "string",
          "userInfoUri": "string",
          "externalIdFieldName": "string"
        }
      },
      "jwtBearerGrantTypeAudienceToUse": "string",
      "jwtBearerGrantTypeScopeToUse": "string",
      "jwtBearerGrantTypeCustomClaimsToUse": "string"
    }
  }
}

Was this helpful?