DELETE /attachments/{attachment_id}

Path parameters

  • attachment_id integer(int32) Required

    ID of attachment to delete

Responses

  • 204 application/json

    Attachment successfully deleted

  • 404 application/json

    The requested resource could not be found

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
  • 405 application/json

    Method Not Allowed

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
  • 500 application/json

    An unexpected error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
DELETE /attachments/{attachment_id}
curl \
 --request DELETE 'https://*.syngency.com/admin/api/attachments/{attachment_id}'
Response examples (204)
[
  [
    []
  ]
]
Response examples (404)
{
  "code": 42,
  "message": "string"
}
Response examples (405)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}