Get Rows

You can use the `limit` query parameter to specify the maximum number of rows to return for each request. Whether or not you supply a `limit`, you may need to make multiple requests to retrieve all the rows in the table. If there are more rows to fetch, the `continuation` field will be set in the response. To retrieve the next page of rows, make another request with the `continuation` as a query parameter.

Authentication

AuthorizationBearer

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path parameters

tableIDstringRequired

Query parameters

limitdoubleOptional
continuationstringOptional

Response

datalist of maps from strings to any

A collection of row objects conforming to the schema of the table where keys are the column IDs and values are the column values:

1[
2 {
3 "fullName": "Alex Bard",
4 "invoiceDate": "2024-07-29T14:04:15.561Z",
5 "totalAmount": 34.50,
6 "amountPaid": 0
7 },
8 {
9 "fullName": "Alicia Hines",
10 "invoiceDate": "2023-06-15T10:30:00.000Z",
11 "totalAmount": 50.75,
12 "amountPaid": 20
13 }
14]
continuationstring
A continuation token for fetching the next set of rows. If this is not provided, this response contains the last set of rows.

Errors

400
Bad Request Error
402
Payment Required Error
404
Not Found Error