Retrieve Licenses Import Result

Retrieves a single licenses import result, if the requesting manager has access permissions to it.

Endpoint: /api/v1/licenses-import-results/{id}/ Method: GET

circle-info

This operation returns the import result only if the requesting manager has the required access permissions.

Success Response

Code: 200 OK

Response (application/json)
{
    "id": 14,
    "file_name": "simple_licenses_example.csv",
    "status": "success",
    "created_at": "2021-04-22T11:14:21.345069Z",
    "started_at": "2021-04-22T11:14:24.461055Z",
    "finished_at": "2021-04-22T11:14:26.861156Z",
    "result": {
        "total_row_count": 2,
        "valid_row_count": 2,
        "invalid_rows": [],
        "created_customers_count": 0,
        "existed_customers_count": 2,
        "created_orders_count": 1,
        "existed_orders_count": 1,
        "created_licenses_count": 2,
        "existed_licenses_count": 0
    }
}

Was this helpful?