ZITADEL Docs
APIsCore ResourcesV1Organization Objects

GetAppKey

Get Application Key By ID

Deprecated: Use GetApplicationKey instead to get an application key.

Returns an application key. Keys are used for authorizing API Applications.

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

Path Parameters

project_id*string
app_id*string
key_id*string

Response Body

application/json

application/json

curl -X GET "https://loading/projects/string/apps/string/keys/string"
{
  "key": {
    "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?