ZITADEL Docs
APIsCore ResourcesV2Application

GetApplicationKey

Get Application Key

Retrieves the application key matching the provided ID.

Specifying a project, organization and application ID is optional but help with filtering/performance.

Required permissions:

  • project.app.read
POST
/zitadel.application.v2.ApplicationService/GetApplicationKey

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

keyId*string

The unique ID of the application key to be retrieved.

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/zitadel.application.v2.ApplicationService/GetApplicationKey" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{    "keyId": "string"  }'
{
  "keyId": "string",
  "creationDate": "1s",
  "expirationDate": "1s"
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?