Hi all, I have been able to master the Get Collection, Get Record and Create Record options in the Data Configurator. However, I cannot get a Delete Record to work on the run Test Option.
In the AIrtable API documention, the example for a delete record looks as so.
EXAMPLE REQUEST
curl -v -X DELETE https://api.airtable.com/v0/appL0xrHjGObJdmfL/Playground \
-H "Authorization: Bearer YOUR_API_KEY" \
-G \
--data-urlencode 'records[]=recPoFtJ1TTEtLrjI' \
--data-urlencode 'records[]=rec8kw4zTRqmOkgdr'
EXAMPLE RESPONSE
{
"records": [
{
"id": "recPoFtJ1TTEtLrjI",
"deleted": true
},
{
"id": "rec8kw4zTRqmOkgdr",
"deleted": true
}
]
}
Does my configuration look correct?
I keep getting a Status 422 - records must be an array of up to 10 record id’s. What is the format for passing an Array of records to a Delete request?
Thanks for the help as I cannot seem to get it to work!