Available Actions
listcreateupdatedelete
Input Schema
{
"type": "object",
"required": [
"baseId",
"tableId"
],
"properties": {
"baseId": {
"type": "string"
},
"records": {
"type": "array"
},
"tableId": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"records": {
"type": "array"
}
}
}Quick Start
API Endpoint
POST /api/execute/airtablecURL Example
curl -X POST \
https://api.nulayers.com/execute/airtable \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "list"}'