Retrieve Customers Import Result

URL : /api/v1/customers-import-results/{id}/

Method : GET

Success Response

Code : 200 OK

Content examples :

{
    "id": 9,
    "file_name": "customers_example.csv",
    "status": "success",
    "created_at": "2021-03-15T09:27:30.970371Z",
    "started_at": "2021-03-15T09:29:54.836154Z",
    "finished_at": "2021-03-15T09:29:55.417980Z",
    "result": {
        "total_row_count": 2,
        "valid_row_count": 2,
        "invalid_rows": [],
        "created_customers_count": 2,
        "existed_customers_count": 0
    }
}

Last updated

Was this helpful?