How to Pass Data from a Panel Link to Another Dashboard in Grafana?

Hi Grafana Community,

I have a Grafana dashboard with a panel that displays data using a Stat visualization. The panel gets its data from an API with the following response format:
[
{
“id”: 1,
“name”: “Compressor”,
“value”: “90 kw/cfm”
}
]

Currently, the panel displays the value field in the visualization as I have added only one column in Parsing options & Result fields which is value . I also have a panel link configured on this panel that redirects to another dashboard.
current view:

My Question: Is it possible to pass the id from the API response through the panel link to the target dashboard? I would like to use this id in the target dashboard to call additional APIs or perform further actions based on this id.
Also I would like to know How we can use that id there to call the api’s.

I tried to add one more column that is id and try to hide that column using field overides option and send that id in panel link like : /d/adhdvxwgu483kb/pandg-dashboards?orgId=1&var-compressorId=${__data.fields.id}
but this is not working , UI visualization is getting disturbed (showing two times) which I don’t want. Also id is not getting passed to target dashboard with this way.

type $ in the URL and you will see what you need