Get list of attachments assigned to a booking model

GET /bookings/{booking_id}/models/{booking_model_id}/attachments

Path parameters

  • booking_id integer(int32) Required

    ID of booking

  • booking_model_id integer(int32) Required

    ID of booking model to get attachments for

Responses

  • 200 application/json

    An array of attachments

  • 500 application/json

    An unexpected error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
GET /bookings/{booking_id}/models/{booking_model_id}/attachments
curl \
 --request GET 'https://*.syngency.com/admin/api/bookings/{booking_id}/models/{booking_model_id}/attachments'
Response examples (200)
[
  [
    []
  ]
]
Response examples (500)
{
  "code": 42,
  "message": "string"
}