ZITADEL Docs
APIsCore ResourcesV1Organization Objects

ListApps

Search Applications

Deprecated: Use ListApplications instead to list applications

Returns all applications within a project, that match the query.

POST
/projects/{project_id}/apps/_search

Path Parameters

project_id*string

Request Body

application/json

query?

list limitations and ordering

queries?

criteria the client is looking for

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/projects/string/apps/_search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "details": {
    "totalResult": 0,
    "processedSequence": 0,
    "viewTimestamp": "1s"
  },
  "result": [
    {
      "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?