ZITADEL Docs
APIsCore ResourcesV1Organization Objects

GetAppByID

Get Application By ID

Deprecated: Use GetApplication instead to fetch an app

Get an application of any type (OIDC, API, SAML).

GET
/projects/{project_id}/apps/{app_id}

Path Parameters

project_id*string
app_id*string

Response Body

application/json

application/json

curl -X GET "https://loading/projects/string/apps/string"
{
  "app": {
    "id": "string",
    "details": {
      "sequence": 0,
      "creationDate": "1s",
      "changeDate": "1s",
      "resourceOwner": "string"
    },
    "state": "APP_STATE_UNSPECIFIED",
    "name": "string",
    "apiConfig": {
      "clientId": "string",
      "authMethodType": "API_AUTH_METHOD_TYPE_BASIC"
    }
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?