ZITADEL Docs
APIsCore ResourcesV1Organization Objects

UpdateApp

Update Application

Deprecated: Use PatchApplication instead to update the generic params of an app.

Update the basic information of an application. This doesn't include information that are dependent on the application type (OIDC, API, SAML)

PUT
/projects/{project_id}/apps/{app_id}

Path Parameters

project_id*string
app_id*string

Request Body

application/json

name*string
[key: string]?never

Response Body

application/json

application/json

curl -X PUT "https://loading/projects/string/apps/string" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "details": {
    "sequence": 0,
    "creationDate": "1s",
    "changeDate": "1s",
    "resourceOwner": "string"
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?