ZITADEL Docs
APIsCore ResourcesV1Organization Objects

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

TypeScript Definitions

Use the request body type in TypeScript.

name*string

Response Body

application/json

curl -X PUT "https://loading/projects/string/apps/string" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "details": {
    "sequence": 0,
    "creationDate": "2023-01-15T01:30:15.01Z",
    "changeDate": "2023-01-15T01:30:15.01Z",
    "resourceOwner": "string"
  }
}

Was this page helpful?