GET
/api/cloud/1.0/apps/{id}/activeExecutions
Retrieves an app's active excutions by service instance id.
This endpoint orders results ascending by the execution id.
URL parameters
(missing or bad snippet)
| name | type | description |
|---|---|---|
id
|
GUID | The AppId of the app active executions you are retrieving. |
serviceInstanceId
|
GUID | The service instance id of the app active executions you are retrieving. |
startDate
|
dateTime | The start date to filter active executions, expressed in ISO 8601 date format. |
(missing or bad snippet)
| name | type | description |
|---|---|---|
endDate
|
dateTime | The end date to filter active executions, expressed in ISO 8601 date format. |
limit
|
integer | A URL parameter that specifies the maximum number of records to return. The default and maximum is 1000. |
offset
|
integer | Specifies an offset to retrieve the next batch of records. |
Request Body
None.
Example
Example: Retrieve the active executions for the App with GUID
920ecfda-7cd5-4c71-8714-8d35e3c3379d, the service instance with GUID 9dbd4a8d-10c1-4dfd-8158-232dc34f21c8, and a start date of October 27, 2025 10:00 AMGET /api/cloud/1.0/apps/920ecfda-7cd5-4c71-8714-8d35e3c3379d/activeExecutions?startDate=2025-10-27T10:00&serviceInstanceId=9dbd4a8d-10c1-4dfd-8158-232dc34f21c8