Skip to main content

Get Application by ID

Endpoint: GET /api/applications/{id}

Retrieves an application's details using its application ID from your Conductor cluster.

Path parameters

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

Response

Returns an array containing the following access key details:

ParameterDescription
idThe application ID.
nameThe application name.
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

Get an application using its ID

Request

curl -X 'GET' \
'https://<YOUR-SERVER-URL>/api/applications/db66991f-206f-4695-8fe9-f5d53976c9a8' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'

Response

{
"id": "db66991f-206f-4695-8fe9-f5d53976c9a8",
"name": "AGENTIC-INTERVIEW",
"createdBy": "john.doe@acme.com",
"updatedBy": "john.doe@acme.com",
"createTime": 1768310094272,
"updateTime": 1768310094272
}