Get Paginated Rows
GET /v1/integration/:id/file/rows
Retrieves a paginated list of rows from a specific integration file. This endpoint allows clients to view structured data in segments, supporting efficient browsing and data handling for large files. Pagination parameters such as skip and limit control which portion of the dataset is returned.
Query Parameters
filename- Parameter for filename~limit- Parameter for ~limit~skip- Parameter for ~skip~csvOptions[fieldDelimiter]- Parameter for ~csvOptions[fieldDelimiter]~search- Parameter for ~search
Request Example
GET /v1/integration/:id/file/rows?filename=4_pro.csv
Response Example
{
"rows": [
{
"id": "1",
"name": "Laptop Pro 15",
"sku": "LP15-2025",
"description": "High performance 15-inch laptop with 16GB RAM and 512GB SSD.",
"_rowId": 0
},
{
"id": "2",
"name": "Wireless Mouse X",
"sku": "WMX-100",
"description": "Ergonomic wireless mouse with adjustable DPI and silent clicks.",
"_rowId": 1
},
{
"id": "3",
"name": "4K Monitor 27",
"sku": "MN27-4K",
"description": "27-inch 4K UHD monitor with HDR and ultra-thin bezels.",
"_rowId": 2
},
{
"id": "4",
"name": "Mechanical Keyboard Z",
"sku": "KBZ-MECH",
"description": "RGB mechanical keyboard with blue switches and aluminum frame.",
"_rowId": 3
}
],
"pagination": {
"skip": 0,
"limit": 10,
"total": 4
}
}