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.
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": {}
}
]
}x >= 11 <= x <= 500Successful Response
Paginated rows for an import session.
Hide child attributes