ZITADEL Docs
APIsCore ResourcesV2Application

GetApplication

Get Application

Retrieves the application matching the provided ID.

Required permissions:

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

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

applicationId*string

The unique ID of the application to be retrieved.

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/zitadel.application.v2.ApplicationService/GetApplication" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{    "applicationId": "string"  }'
{
  "application": {
    "applicationId": "string",
    "creationDate": "1s",
    "changeDate": "1s",
    "state": "APPLICATION_STATE_UNSPECIFIED",
    "name": "string",
    "projectId": "string",
    "apiConfiguration": {
      "clientId": "string",
      "authMethodType": "API_AUTH_METHOD_TYPE_BASIC"
    }
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?