Hey there!
I'm trying to build an automation every time a record gets created on my base.
I'm calling the list webhook payloads in order to see the new record data (https://api.airtable.com/v0/bases/{baseId}/webhooks/{webhookId}/payloads).
I'm receiving backing something like:
"createdRecordsById": {
"rec00000000000000": {
"cellValuesByFieldId": {
"fld0000000000000": 0
},
"createdTime": "2022-02-01T21:25:05.663Z"
}
}
I was wondering if it was possible to get cell values by name instead of Id ?
And if not how could I easily find back the name of the field given by cellValuesByFieldId ?
Cheers!