Retrieve License Features Import Result

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

URL: /api/v1/license-features-import-results/{id}/

Method: GET

Success Response

Code: 200 OK

Response (application/json)
{
    "id": 12,
    "file_name": "lpf_example.csv",
    "status": "success",
    "created_at": "2021-05-28T07:41:50.247644Z",
    "started_at": "2021-05-28T07:41:58.090021Z",
    "finished_at": "2021-05-28T07:42:03.189833Z",
    "result": {
        "total_row_count": 5,
        "valid_row_count": 5,
        "invalid_rows": [],
        "created_license_features": 5,
        "existed_license_features": 0
    }
}

Was this helpful?