Get list of records
Gets the list of records of the selected table
- Parameters
- Advanced call ?
Function GetListOfRecords(Val Token, Val Base, Val Table, Val Indent = "") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| Base | --base | String | ✔ | Database identifier |
| Table | --table | String | ✔ | Table identifier |
| Indent | --offset | String | ✖ | Next page identifier of data from the previous request |
Returns
Map Of KeyAndValue - serialized JSON response from Airtable
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appJiRrCJhRhnaVAo";
Table = "tblFGmvh2eldM8MuJ";
Result = OPI_Airtable.GetListOfRecords(Token, Base, Table);
- Bash
- CMD/Bat
oint airtable GetListOfRecords \
--token "***" \
--base "appZ3bojJFizsjQto" \
--table "tblrDlifP8zqwLc5l"
oint airtable GetListOfRecords ^
--token "***" ^
--base "appZ3bojJFizsjQto" ^
--table "tblrDlifP8zqwLc5l"
Result
{
"records": [
{
"id": "recItFsxYki95fis4",
"createdTime": "2026-06-18T17:41:23Z",
"fields": {
"Number": 10,
"String": "Hello\n"
}
}
]
}