# Check all import errors

You can return the list of all errors related to the specific import given by ?import_id=<import_id> parameter.
The list is paginated by 100 errors per page.

GET /import/errors/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" 
-H "Accept: */*; version=2" "https://<your_app_subdomain>.user.com/api/public/import/errors/?import_id=<import_id>"

# Response

{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "line": 401,
      "monitor_id": "584afd86-7d23-4179-82a7-e811589c1f76",
      "errors": "File import failed: Invalid data for import: bool_attr_name: Must be a valid boolean."
    },
    {
      "line": 402,
      "monitor_id": "584afd86-7d23-4179-82a7-e811589c1f76",
      "errors": "File import failed: Invalid data for import: bool_attr_name: Must be a valid boolean."
    }
  ]
}