cURL
curl --request POST \ --url https://tables.fillout.com/api/v1/bases/{databaseId}/tables \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "fields": [ { "type": "single_line_text", "name": "<string>", "template": {} } ] }'
201
example
{ "id": "<string>", "name": "<string>", "order": 123, "primaryFieldId": "<string>", "fields": [ { "id": "<string>", "name": "<string>", "type": "single_line_text", "template": {}, "order": 123 } ], "views": [ { "id": "<string>", "name": "<string>", "type": "<string>", "config": { "sorts": [ {} ], "hiddenFieldIds": [ "<string>" ], "fieldWidths": {}, "orderedFieldIds": [ "<string>" ] } } ]}
Adds a new table to an existing database.
1
Show child attributes
Was this page helpful?