cURL
curl --request GET \ --url https://api.glideapps.com/tables \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "2a1bad8b-cf7c-44437-b8c1-e3782df6", "name": "Invoices" } ] }
Gets all Big Tables in the current team
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
<token>
A collection of table objects, each with id and name
id
name
Show child attributes
ID of the table, e.g., 2a1bad8b-cf7c-44437-b8c1-e3782df6
2a1bad8b-cf7c-44437-b8c1-e3782df6
"2a1bad8b-cf7c-44437-b8c1-e3782df6"
Name of the table, e.g., Invoices
Invoices
"Invoices"
Was this page helpful?