DELETE
https://api.veriko.mx/v1/beneficiaries/imports/{id}/rows/{row_id}Remove a preview row
How-to guide →Removes a row from an owned import job before confirmation.
The row is no longer part of the import job. The remaining counters and duplicates are recalculated; previously saved accounts are unchanged.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
id* | path | integer | required | Import job identifier. e.g.42 |
row_id* | path | integer | required | Import-job row identifier. e.g.102 |
curl -X DELETE 'https://api.veriko.mx/v1/beneficiaries/imports/{id}/rows/{row_id}' \
-H 'Authorization: Bearer veriko_••••' \
-H 'Content-Type: application/json'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Status | Class | Description | Body |
|---|---|---|---|
| 204 | 2xx | Row removed from the import job. No body. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| 404 | 4xx | The resource does not exist or is not visible to the client | Error |
| 422 | 4xx | Import job is not editable (job_not_editable). | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|