# Get dataset errors
Gets any errors which occurred during the processing of dataset content.
# Input
Endpoint
GET /orgs/:organisation/datasets/:dataset/errors
Field | Type | Required | Value Description |
---|---|---|---|
organisation | String | yes | The organisation name |
dataset | String | yes | The dataset name |
# Request
curl -X GET \
-H "Authorization: token my-org-api-token" \
-H "Accept: application/vnd.visii.v2+json" \
"https://api.visii.com/orgs/my-org/datasets/my-dataset/errors"
# Response
Field | Type | Value Description |
---|---|---|
status | String | The status of the response |
errors | Object | The list of errors |
errors.$.id | String | The ID of the content for which the error has occurred |
errors.$.error | String | The description of the error |
HTTP/1.1 200 OK
{
"errors": [
{
"id": "unit-id-1",
"error": "invalid image format"
}
],
"status": "ok"
}