Filtering through query on a linked table

I’m attempting to request data by filtering against a linked table field, which has multiple entries.
image

So far the only way I see to query these fields is to duplicate the field id and add each entry like the following:

&filters={"filter_type":"AND",
  "filters":[
    {
      "type":"link_row_has",
      "field":2796657,
      "value":67
    },
    {
      "type":"link_row_has",
      "field":2796657,
      "value":another id 
    }
  ]

My issue Is I want to be able to add these filters from the URL but I cant dynamically add the following every time

    {
      "type":"link_row_has",
      "field":2796657,
      "value":another id 
    }

Is there a way to query through a single value using a list:

{"filter_type":"AND",
  "filters":[
    {
      "type":"link_row_has",
      "field":2796657,
      "value":[67, another id]
    }
  ]

Hi,

If you want to use multiple search terms, you need to use OR as filter type instead of AND.

&filters={"filter_type":"OR",
  "filters":[
    {
      "type":"link_row_has",
      "field":2796657,
      "value":67
    },
    {
      "type":"link_row_has",
      "field":2796657,
      "value":another id 
    }
  ]

But you need to repeat the entire object for each value you want to search for. There is at the moment no shortcut syntax for this.