ZITADEL Docs
APIsCore ResourcesV2Application

UpdateApplication

Update Application

Changes the configuration of an OIDC, API or SAML type application, as well as the application name, based on the input provided.

Required permissions:

  • project.app.write
POST
/zitadel.application.v2.ApplicationService/UpdateApplication

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 updated.

projectId?string

The ID of the project the application belongs to.

name?string

Publicly visible name of the application. This might be presented to users if they sign in. If not set, the name will not be changed.

apiConfiguration*
[key: string]?never

Response Body

application/json

application/json

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

Was this page helpful?