Skip to main content

Create Application

Endpoint: POST /api/applications

Creates a new application in your Conductor cluster.

Request body

ParameterDescriptionTypeRequired/ Optional
nameThe name of the application.stringRequired.

Response

Returns the newly created application object with following fields.

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

Examples

Create a new application

Request

curl -X 'POST' \
'https://<YOUR-SERVER-URL>/api/applications' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"name": "SampleApplication"
}'

Response

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