GET /bookings/{booking_id}

Path parameters

  • booking_id integer(int32) Required

    ID of booking to return

Responses

  • 200 application/json

    An array of booking properties

  • 404 application/json

    No booking with that ID exists

  • 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}
curl \
 --request GET 'https://*.syngency.com/admin/api/bookings/{booking_id}'
Response examples (200)
[
  [
    []
  ]
]
Response examples (404)
[
  [
    []
  ]
]
Response examples (500)
{
  "code": 42,
  "message": "string"
}