Description |
---|
Creates a pipeline execution for one pipeline including parameters. |
URL: http://{server}/master/api/1/pipelines/{pipeline_id}/executions
application/x-www-form-urlencoded
Supported Method |
---|
|
Parameter | Type | Required | Description |
---|---|---|---|
| string | true | Username of the user credentials the execution should be run under. |
| boolean | ||
| array of parameters |
Sample cURL request to run in normal mode:
curl --location ‘https://<your poolparty server>/master/api/1/pipelines/<pipeline ID>/executions’ \
--header ‘Authorization: Basic *****’ \
--form ‘params=“{\“owner\” : \“admin\“,
\“isDebugging\” : true,
\“parameterList\” : [{\“key\” : \“uuid\“,
\“value\” : \“f123123123f123123123123f1234\“}]}“’ \
--form
‘file1=@“/<path to your stored data>/<your data>.md”’
application/json
Status: 200 - OK
Attribute | Type | Required | Description |
---|---|---|---|
| number | true | ID of the pipeline. |
| string | false | Returns the status of the execution. Possible values:
|
| string | true | Position in the queue. |
| string | Values are date and time. Format: | |
| string | Values are date and time. Format: | |
| string | Possible values: | |
| string | Possible values: | |
| string | Values are date and time. Format: | |
| string | User who created the execution. | |
| string | false | User with viewing permissions or this execution. |
| string | Possible values: |
{
"id": 321,
"status": "QUEUED",
"orderNumber": 1,
"start": null,
"end": null,
"schedule": null,
"stop": false,
"lastChange": "<timestamp>",
"asUser": "<creator of the execution>",
"userActorExternalId": null,
"debugging": false
}