Launches
This object represents a Wrkflow Launch aka a Wrkflow automation process that has been started. You can use the Launch object to track the progress, pause or resume it.
ENDPOINTS |
|
GET | /v1/get-launches |
POST | /v1/launch/<launch_id>/pause |
POST | /v1/launch/<launch_id>/resume |
The Launch object
Attributes
Attributes | The Launch object |
| {
|
Retrieve Launches
Retrieves one or more Wrkflow Launches objects. The Wrkflow Launches are sorted by start_date
in descending order.
Parameters
| GET
cURL x
Python ... |
Returns
A dictionary with a launches
property that contains an array of Launches. The totalCount
property will give the number of Launches returned. If there are no Launches matching the request, the resulting array will be empty
{ |
Pause Launch
Pause a Wrkflow Launch that has started. Pausing a Wrkflow Launch indefinitely is the same as stopping it.
Parameters
| POST
cURL curl -P /v1/launch/<launch_id>/pause
Python ... |
Returns
If successful, a dictionary with Boolean property status
where true
denotes a successful pause.
{ "status": true }
Resume Launch
Resume a Wrkflow Launch that was paused. Resume an already running Wrkflow will effectively do nothing and still counts as a successful request.
Parameters
| POST
cURL curl -P /v1/launch/<launch_id>/resume
Python ... |
Returns
If successful, a dictionary with Boolean property status
where true
denotes a successful resume.
{ "status": true }