Hi, I'm working with the Airtable API, and am noticing that the "list records" API endpoint is returning linked records in "cell format V1", while the Webhooks API returns values in "cell format V2".
Cell format V1 is an array of strings representing record ID of the linked record(s).
["recXXX", "recXXY"]
Cell format V2 is an array of objects representing the record ID and 'name' of the linked record(s).
[
{
"id": "recXXX",
"name": "Linked Record A"
},
{
"id": "recXXY",
"name": "Linked Record B"
}
]
In my case, I really want to see the "v2" format in a 'list records' API call. Is there an API endpoint that will return this, or is there one planned for the future?