Baserow#
Connection#
Insight² can connect to your Baserow account to read and write data. Baserow API token is required to create an Baserow data source on Insight. You can follow the steps to create API token from this link.
This guide assumes that you have already gone through Adding a data source tutorial.
Supported queries#
List fields#
This query lists all the fields in a table.
Required parameters:#
- Table ID
Example response from Baserow:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
List rows#
This query lists all the rows in a table.
Required parameters:#
- Table ID
Example response from Baserow:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
Get row#
Required parameters:#
- Table ID
- Row ID
Example response from Baserow:
1 2 3 4 5 6 7 8 |
|
Create row#
Required parameters:#
- Table ID
- Records
Example Records:#
1 2 3 4 5 6 |
|
Example response from Baserow:
1 2 3 4 5 6 7 8 |
|
Update row#
Required parameters:#
- Table ID
- Row ID
- Records
Example Records:#
1 2 3 4 5 6 |
|
Example response from Baserow:
1 2 3 4 5 6 7 8 |
|
Move row#
Required parameters:#
- Table ID
- Row ID
Optional parameters:#
- Before ID (The row will be moved before the entered ID. If not provided, then the row will be moved to the end )
Example response from Baserow:
1 2 3 4 5 6 7 8 |
|
Delete row#
Required parameters:#
- Table ID
- Row ID
While deleting a row, the response will be either success or failure from Baserow