post https://{server}/api-gateway/api/v2/dtables//query-links/
When you have a "Link to other records" column in your table and you
have created some links to the current or another table, you can use
this request to query each row's linked records' IDs and display values.
id or name
In the request body you can as keys either:
table_id
ortable_name
link_column_key
orlink_column_name
To get more information about each linked record, retrieve their
row_id
and use the Query SeaTable with SQL request, for example:
SELECT * FROM Table1 WHERE _id IN (row_id1, row_id2, ...);