Files
awx/awx/api/templates/api/bulk_job_launch_view.md
Alan Rominger 7cb16ef91d Make the bulk endpoint templates work in API browser
Various fixes

- Don't skip checking resource RBAC permissions for admins
Necessary to handle bad input, e.g. providing a
unified_job_template id that doesn't exit

- In awxkit, only "walk" if we get 'url' in the result

- Bulk host create should return url pointing to inventory,
not inventory/hosts

dont do org check for superuser
2023-03-08 12:58:12 -05:00

383 B

Bulk Job Launch

This endpoint allows the client to launch multiple UnifiedJobTemplates at a time, along side any launch time parameters that they would normally set at launch time.

Example:

{
    "name": "my bulk job",
    "jobs": [
        {"unified_job_template": 7, "inventory": 2},
        {"unified_job_template": 7, "credentials": [3]}
    ]
}