ZITADEL Docs
APIsCore ResourcesV2Application

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": "2023-01-15T01:30:15.01Z",
  "expirationDate": "2023-01-15T01:30:15.01Z"
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}

Was this page helpful?