mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
9 lines
281 B
Bash
9 lines
281 B
Bash
#!/usr/bin/env sh
|
|
|
|
# List all available endpoints
|
|
curl -fs 'https://awx.company.com/api/v2/' | jq '.' -
|
|
|
|
# list all jobs
|
|
curl -fs --user 'admin:password' 'https://awx.company.com/api/v2/job_templates/' | jq '.' -
|
|
curl -fs 'https://awx.company.com/api/v2/job_templates/' | jq '.' -
|