Is it possible to pass AWX job Id to job?

Hi is it possible to pass job details to the ansible playbook through extra vars in the job template?

tower_job_id / awx_job_id is automatically included in extra_vars, you should be able to reference this in playbooks already. You can use the API to look up further details of the job if you need it.

Some job details are already included (e.g. awx_job_id):

https://github.com/ansible/awx/blob/devel/awx/main/models/unified_jobs.py#L1377

Thank you both very much.