Retrieve Customers Import Result

Learn how to retrieve the import result of a single customer using the API endpoint outlined in this document. Managers with access permissions can make a successful GET request to /api/v1/customers-import-results/{id}/.

Request

  • Method: GET

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

Responses

200 OK
{
    "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?