GET /api/job_invocations
200
{
"total": 3,
"subtotal": 3,
"page": 1,
"per_page": 20,
"search": null,
"sort": {
"by": null,
"order": null
},
"results": [
{
"id": 107,
"description": null,
"job_category": "Job name 117",
"targeting_id": 121,
"status": 0,
"start_at": null,
"status_label": "succeeded",
"ssh_user": null,
"time_to_pickup": null,
"dynflow_task": {
"id": "ad2828a3-6bde-4f8b-b286-fa3059ebb3c1",
"state": "stopped"
},
"succeeded": "N/A",
"failed": "N/A",
"pending": "N/A",
"total": "N/A",
"missing": 0
},
{
"id": 106,
"description": null,
"job_category": "Job name 105",
"targeting_id": 123,
"status": 2,
"start_at": null,
"status_label": "queued",
"ssh_user": null,
"time_to_pickup": null,
"dynflow_task": null,
"succeeded": "N/A",
"failed": "N/A",
"pending": "N/A",
"total": "N/A",
"missing": 0
},
{
"id": 105,
"description": null,
"job_category": "Job name 104",
"targeting_id": 122,
"status": 2,
"start_at": null,
"status_label": "queued",
"ssh_user": null,
"time_to_pickup": null,
"dynflow_task": null,
"succeeded": "N/A",
"failed": "N/A",
"pending": "N/A",
"total": "N/A",
"missing": 0
}
]
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
search
optional |
filter results Validations:
|
|
order
optional |
Sort and order by a searchable field, e.g. '<field> DESC' Validations:
|
|
page
optional |
Page number, starting at 1 Validations:
|
|
per_page
optional |
Number of results per page to return, 'all' to return all results Validations:
|
GET /api/job_invocations/137
200
{
"id": 137,
"description": null,
"job_category": "Job name 143",
"targeting_id": 151,
"status": 0,
"start_at": null,
"status_label": "succeeded",
"ssh_user": null,
"time_to_pickup": null,
"dynflow_task": {
"id": "36bf4d9f-7275-454f-aaf5-87ed726729d0",
"state": "stopped"
},
"succeeded": "N/A",
"failed": "N/A",
"pending": "N/A",
"total": "N/A",
"missing": 0,
"targeting": {
"bookmark_id": null,
"search_query": "name = foo",
"targeting_type": "static_query",
"user_id": 988725812,
"randomized_ordering": false,
"hosts": []
},
"task": {
"id": "36bf4d9f-7275-454f-aaf5-87ed726729d0",
"state": "stopped"
},
"mode": "immediate"
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
host_status
optional |
Show Job status for the hosts Validations:
|
POST /api/job_invocations
{
"job_invocation": {
"feature": "remote_execution_feature_8",
"host_ids": [
132,
133
]
}
}
201
{
"id": 188,
"description": "Job template 181 with inputs Template input 59=\"''\"",
"job_category": "Job name 186",
"targeting_id": 212,
"status": 3,
"start_at": "2023-11-27 20:15:08 UTC",
"status_label": "running",
"ssh_user": null,
"time_to_pickup": null,
"dynflow_task": {
"id": "57b07eed-db92-44a5-a98b-dcfb071bcff9",
"state": "planned"
},
"succeeded": "N/A",
"failed": "N/A",
"pending": "N/A",
"total": 2,
"missing": 0,
"targeting": {
"bookmark_id": null,
"search_query": "name ^ (host137, host138)",
"targeting_type": "static_query",
"user_id": 135138680,
"randomized_ordering": null,
"hosts": [
{
"name": "host137",
"id": 132,
"display_name": "host137"
},
{
"name": "host138",
"id": 133,
"display_name": "host138"
}
]
},
"task": {
"id": "57b07eed-db92-44a5-a98b-dcfb071bcff9",
"state": "planned"
}
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
job_invocation
required |
Validations:
|
|
job_invocation[job_template_id]
optional , nil allowed |
The job template to use, parameter is required unless feature was specified Validations:
|
|
job_invocation[targeting_type]
required |
Invocation type, one of {“static_query”=>“Static Query”, “dynamic_query”=>“Dynamic Query”} Validations:
|
|
job_invocation[randomized_ordering]
optional , nil allowed |
Execute the jobs on hosts in randomized order Validations:
|
|
job_invocation[inputs]
optional , nil allowed |
Inputs to use Validations:
|
|
job_invocation[ssh]
optional , nil allowed |
SSH provider specific options Validations:
|
|
job_invocation[ssh][effective_user]
optional , nil allowed |
What user should be used to run the script (using sudo-like mechanisms). Defaults to a template parameter or global setting. Validations:
|
|
job_invocation[ssh][effective_user_password]
optional , nil allowed |
Set password for effective user (using sudo-like mechanisms) Validations:
|
|
job_invocation[ssh_user]
optional , nil allowed |
Set SSH user Validations:
|
|
job_invocation[password]
optional , nil allowed |
Set SSH password Validations:
|
|
job_invocation[key_passphrase]
optional , nil allowed |
Set SSH key passphrase Validations:
|
|
job_invocation[recurrence]
optional , nil allowed |
Create a recurring job Validations:
|
|
job_invocation[recurrence][cron_line]
optional , nil allowed |
How often the job should occur, in the cron format Validations:
|
|
job_invocation[recurrence][max_iteration]
optional , nil allowed |
Repeat a maximum of N times Validations:
|
|
job_invocation[recurrence][end_time]
optional , nil allowed |
Perform no more executions after this time Validations:
|
|
job_invocation[recurrence][purpose]
optional , nil allowed |
Designation of a special purpose Validations:
|
|
job_invocation[scheduling]
optional , nil allowed |
Schedule the job to start at a later time Validations:
|
|
job_invocation[scheduling][start_at]
optional , nil allowed |
Schedule the job for a future time Validations:
|
|
job_invocation[scheduling][start_before]
optional , nil allowed |
Indicates that the action should be cancelled if it cannot be started before this time. Validations:
|
|
job_invocation[concurrency_control]
optional , nil allowed |
Control concurrency level and distribution over time Validations:
|
|
job_invocation[concurrency_control][concurrency_level]
optional , nil allowed |
Run at most N tasks at a time Validations:
|
|
job_invocation[bookmark_id]
optional , nil allowed |
Validations:
|
|
job_invocation[search_query]
optional , nil allowed |
Validations:
|
|
job_invocation[description_format]
optional , nil allowed |
Override the description format from the template for this invocation only Validations:
|
|
job_invocation[execution_timeout_interval]
optional , nil allowed |
Override the timeout interval from the template for this invocation only Validations:
|
|
job_invocation[feature]
optional , nil allowed |
Remote execution feature label that should be triggered, job template assigned to this feature will be used Validations:
|
|
job_invocation[time_to_pickup]
optional , nil allowed |
Override the global time to pickup interval for this invocation only Validations:
|
GET /api/job_invocations/74/hosts/52
200
{
"complete": false,
"refresh": true,
"output": [],
"delayed": true,
"start_at": null
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
host_id
required |
Validations:
|
|
since
optional |
Validations:
|
GET /api/job_invocations/38/hosts/27/raw
200
{
"complete": true,
"refresh": false,
"output": null
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
host_id
required |
Validations:
|
POST /api/job_invocations/110/cancel
{
"job_invocation": {}
}
200
{
"cancelled": true,
"id": 110
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
force
optional |
Validations:
|
POST /api/job_invocations/113/rerun
{
"failed_only": true,
"job_invocation": {}
}
201
{
"id": 114,
"targeting_id": 130,
"job_category": "Job name 123",
"task_id": "a40e38aa-9bb8-4d92-9b48-46d24d8e5f1d",
"task_group_id": 4,
"triggering_id": 4,
"description": null,
"concurrency_level": null,
"time_span": null,
"execution_timeout_interval": null,
"password": null,
"key_passphrase": null,
"remote_execution_feature_id": null,
"effective_user_password": null,
"ssh_user": null,
"time_to_pickup": null
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
failed_only
optional |
Validations:
|
POST /api/job_invocations/3/outputs
{
"search_query": "id = 4",
"job_invocation": {}
}
200
{
"outputs": [
{
"complete": true,
"refresh": false,
"output": [],
"host_id": 4
}
]
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
|
search_query
optional |
Validations:
|
|
since
optional |
Validations:
|
|
raw
optional |
Validations:
|