Update Application
Endpoint: PUT /api/applications/{id}
Updates an existing application in your Conductor cluster.
Path parameters
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| id | The unique identifier of the application to update. | string | Required. |
Request body
Format the request body with the updated application name.
| Parameter | Description |
|---|---|
| name | The updated name of the application. |
Response
Returns the updated application object.
| Parameter | Description |
|---|---|
| id | Unique identifier for the application. |
| name | Name of the application. |
| createdBy | Email of the user who created the application. |
| updatedBy | Email of the user who last updated the application. |
| createTime | Creation timestamp in Unix time (milliseconds). |
| updateTime | Last 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
}