Hello @Rajendar Talatam - Thanks for reaching out.
You can use the REST API GET
https://dev.azure.com/{organiztion}/_apis/distributedtask/pools/{poolId}/jobrequests?api-version=6.0
directly, e.g. via CURL, PowerShell.
- CURL sample:
curl -u :<PAT> https://dev.azure.com/{organiztion}/_apis/distributedtask/pools/{poolId}/jobrequests?api-version=6.0
- Powershell Sample:
az pipelines pool list [--action {manage, none, use}]
[--detect {false, true}]
[--org]
[--pool-name]
[--pool-type {automation, deployment}]
[--query-examples]
[--subscription]
Reference - use-personal-access-tokens-to-authenticate
Hope that helps.
------------------------------------------------------------------
If the above response was helpful, please feel free to "Accept as Answer" so it can be beneficial to the community.