JavaScript
const options = { method: 'GET', headers: {'x-organization-id': '<x-organization-id>', 'x-api-key': '<api-key>'} }; fetch('https://api.dcycle.io/v2/imports/{import_id}/rows', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "import_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "page": 123, "page_size": 123, "total_pages": 123, "total_rows": 123, "rows": [ { "row_index": 123, "data": {}, "errors": {} } ] }
Get import rows with optional error-only filtering.
Documentation IndexFetch the complete documentation index at: https://code.dcycle.io/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://code.dcycle.io/llms.txt
Use this file to discover all available pages before exploring further.
x >= 1
1 <= x <= 500
Successful Response
Paginated rows for an import session.
Hide child attributes