Variable | Type | Description |
---|---|---|
import_id | string | The ID of the import for which to get the status |
Parameter | Description |
---|---|
status | The status of the import |
create_time | The timestamp of the import creation |
start_time | The timestamp when the import started execution |
stop_time | The timestamp when the import finished execution |
total_rows | The total rows of the import data |
data | Array containing info (keys: progress, invalid, duplicate, new, updated, optout, error_b2b, error_hardbounce, error_bad) |
{ "status": "finished", "create_time": 1563976149, "start_time": 1563976151, "stop_time": 1563976151, "total_rows": 1, "data": { "progress": 1, "invalid": 0, "duplicate": 0, "new": 1, "updated": 0, "optout": 0, "error_b2b": 0, "error_hardbounce": 0, "error_bad": 0 } }
Code | Message | Description |
---|---|---|
407 | Missing required param import_id | import_id param is required |
406 | NO SUCH import found | Import not found |
{ "err": true, "message": "Missing required param import_id", "code": 407 }
{ "err": true, "message": "NO SUCH import found", "code": 406 }