GET
/v1/mgmt/sso/idp/app/load

Load Application by ID within a project

This endpoint returns details of a specific Application 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/app/load

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Query Parameters

idstring

Status codeDescription
200OK
curl -X GET "https://api.descope.com/v1/mgmt/sso/idp/app/load?id=string"

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