Skip to main content

Update Application

Endpoint: PUT /api/applications/{id}

Updates an existing application in your Conductor cluster.

Path parameters

ParameterDescriptionTypeRequired/ Optional
idThe unique identifier of the application to update.stringRequired.

Request body

Format the request body with the updated application name.

ParameterDescription
nameThe updated name of the application.

Response

Returns the updated application object.

ParameterDescription
idUnique identifier for the application.
nameName of the application.
createdByEmail of the user who created the application.
updatedByEmail of the user who last updated the application.
createTimeCreation timestamp in Unix time (milliseconds).
updateTimeLast update timestamp in Unix time (milliseconds).

Returns 404 if an invalid application ID is provided.

Examples

Update an existing application

Request

curl -X 'PUT' \
'https://<YOUR-SERVER-URL>/api/applications/243a8a88-9f77-48b2-9429-76793a123344' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"name": "updatedSampleApplication"
}'

Response

{
"id": "243a8a88-9f77-48b2-9429-76793a123344",
"name": "updatedSampleApplication",
"createdBy": "john.doe@acme.com",
"updatedBy": "john.doe@acme.com",
"createTime": 1770797022913,
"updateTime": 1770808746159
}