Get bookings for a specific model (deprecated - should use /bookings?model_id= instead)

GET /models/{model_id}/bookings

Path parameters

  • model_id integer(int32) Required

    ID of model to retrieve bookings for

Responses

  • 200 application/json

    Array of bookings

  • 500 application/json

    An unexpected error occurred

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