Help

Save the date! Join us on October 16 for our Product Ops launch event. Register here.

API Call for List Records with Cell Format V2?

346 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Jeff_Miller2
5 - Automation Enthusiast
5 - Automation Enthusiast

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?

0 Replies 0