GET
/v1/mgmt/sso/idp/apps/load

Load all Applications within a project

This endpoint returns details of all Applications within your Descope project.

See Also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/sso/idp/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/sso/idp/apps/load"

{
  "apps": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "enabled": true,
      "logo": "string",
      "appType": "string",
      "samlSettings": {
        "loginPageUrl": "string",
        "idpCert": "string",
        "useMetadataInfo": true,
        "metadataUrl": "string",
        "entityId": "string",
        "acsUrl": "string",
        "certificate": "string",
        "attributeMapping": [
          {
            "name": "string",
            "type": "string",
            "value": "string"
          }
        ],
        "groupsMapping": [
          {
            "name": "string",
            "type": "string",
            "filterType": "string",
            "value": "string",
            "roles": [
              {
                "id": "string",
                "name": "string"
              }
            ]
          }
        ],
        "idpMetadataUrl": "string",
        "idpEntityId": "string",
        "idpSsoUrl": "string",
        "acsAllowedCallbacks": [
          "string"
        ],
        "subjectNameIdType": "string",
        "subjectNameIdFormat": "string",
        "defaultRelayState": "string",
        "idpInitiatedUrl": "string",
        "forceAuthentication": true,
        "idpLogoutUrl": "string",
        "logoutRedirectUrl": "string",
        "errorRedirectURL": "string"
      },
      "oidcSettings": {
        "loginPageUrl": "string",
        "issuer": "string",
        "discoveryUrl": "string",
        "claims": [
          "string"
        ],
        "forceAuthentication": true
      }
    }
  ]
}

Was this helpful?