JavaScript
const options = { method: 'POST', headers: { 'x-organization-id': '<x-organization-id>', 'x-api-key': '<api-key>', 'Content-Type': 'application/json' }, body: JSON.stringify({row_indices: [123], delete_all_errors: false}) }; fetch('https://api.dcycle.io/v2/imports/{import_id}/rows/delete', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "deleted_count": 123, "total_rows": 123, "valid_rows": 123, "error_rows": 123 }
Physically delete rows from a validated import session.
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.
Rows to physically delete from a validated import session.
10000
Successful Response
Result of deleting rows from an import session.