Get shotgun import errors

GET /import/shotgun/errors

Get all Shotgun import errors from the database. Returns a list of data import errors with source "shotgun".

Responses

  • 200 application/json

    List of import errors retrieved successfully

    Hide response attributes Show response attributes object
    • id string(uuid)

      Import error unique identifier

    • source string

      Source of the import error

    • event_data object

      Error event data

    • created_at string(date-time)

      Creation timestamp

  • 400

    Invalid request

GET /import/shotgun/errors
curl \
 --request GET 'http://api.example.com/import/shotgun/errors' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "source": "shotgun",
    "event_data": {
      "error": "Import failed"
    },
    "created_at": "2024-01-15T10:30:00Z"
  }
]