Delete shotgun import error

DELETE /import/shotgun/errors/{error_id}

Delete a Shotgun import error by its unique identifier. Returns success confirmation when the error is deleted.

Path parameters

  • error_id string(uuid) Required

    Import error unique identifier

Responses

  • 204 application/json

    Import error deleted successfully

    Hide response attribute Show response attribute object
    • deletion_success boolean

      Whether deletion was successful

  • 400

    Invalid error ID format

DELETE /import/shotgun/errors/{error_id}
curl \
 --request DELETE 'http://api.example.com/import/shotgun/errors/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"
Response examples (204)
{
  "deletion_success": true
}