API endpoints overviewImports
Get import rows
Get import rows
Retrieves all data rows for a specific import. Returns the actual cell values organized by row.
Note: For large imports (10k+ rows), consider using the export endpoint instead.
Path Parameters
importId*string
The import ID to retrieve rows for
Query Parameters
sortBy?string
limit?integer
Number of items per page (1-100)
Range
0 <= valuecursor?null|string
Cursor for pagination
direction?unknown|unknown
Sort direction
Response Body
application/json
curl -X GET "https://api.ivandt.com/v1/imports/string/rows"{
"data": [
{
"rowIndex": 0,
"data": {
"property1": {},
"property2": {}
}
}
],
"pagination": {
"paging": {
"limit": 0,
"count": 0,
"cursor": {},
"nextCursor": {},
"hasNext": true,
"total": 0
},
"filters": {
"property1": null,
"property2": null
},
"sort": {
"orderBy": "string",
"direction": "asc"
}
}
}