ZITADEL Docs
APIsCore ResourcesV1Organization Objects

ListAppKeys

List Application Keys

Deprecated: Use ListApplicationKeys instead to list application keys.

Search application keys. Keys are used for authorizing API Applications.

POST
/projects/{project_id}/apps/{app_id}/keys/_search

Path Parameters

project_id*string
app_id*string

Request Body

application/json

query?

list limitations and ordering

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/projects/string/apps/string/keys/_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"
      },
      "type": "KEY_TYPE_UNSPECIFIED",
      "expirationDate": "1s"
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?