ExecuteJobAsync
Starts jobs in asynchronous mode.
API | Description |
---|---|
POST v1/ExecuteJobAsync |
Executes a Job in asynchronous mode. The response will be returned immediately. You can configure a webhook to be notififed upon completion, or you can check the results via the Results API. |
ExecuteJob
Starts job in synchronous mode.
API | Description |
---|---|
POST v1/ExecuteJob |
Executes a Job in synchronous mode. The response will be returned once the job execution completes. |
Results
Get the results of a completed job.
API | Description |
---|---|
GET v1/Results/{id} |
Gets the results of job that was executed by the Run ID. |
CancelJob
Cancel a currently running job.
API | Description |
---|---|
GET v1/CancelJob/{id} |
Cancels a currently running job by the provided Run ID. |
Webhook
Asynchronous callback for Webhooks.
API | Description |
---|---|
POST v1/Webhook?instance={instance}&projectid={projectid}&jobid={jobid} |
Executes a Job in asynchronous mode. The response will be returned immediately. You can check the results via the Results API. The BODY of the request will be passed in as the Job Argument. |
GET v1/Webhook?instance={instance}&projectid={projectid}&jobid={jobid}&argument={argument} |
Executes a Job in asynchronous mode. The response will be returned immediately. You can check the results via the Results API. Job Argument can be passed in as a normal querystring parameter. |
GetToken
API | Description |
---|---|
POST v1/GetToken |
No documentation available. |