Can anyone help me with the Ansible uri module syntax to run a qscript? Specifically I’d like to be able to execute the AuxCopyReport
https://documentation.commvault.com/2023/expert/AuxCopyReport.html
- name: "Run aux copy report"
uri:
url: "https://{{ cv_server }}/webconsole/api/QCommand/qoperation%20execute"
method: POST
body_format: json
body:
"what goes here?"
force_basic_auth: yes
headers:
AuthToken: "{{ auth_token }}"
Content-Type: "application/json"
Accept: "application/json "
validate_certs: no
register: cv_auxcopy