Call AWX API with uri module

Is there anyway of sending a limit to the AWX API through the ansible URI module? I can successfully launch jobs without a limit using the below example. But no matter where I try put the limit (within body or out of it) it won’t pass it through.
For info I don’t do much work with API’s so I’m not so good

body:

limit: “{{ hostname }}”

body_format: json

when: os == “sol”

The limit value in the job template definition needs to be set to allow prompt-on-launch… otherwise the launch endpoint will silently ignore it.

Ah great that solved the issue, Thanks!