PUT /bookings/{booking_id}/locations/{booking_location_id}

Path parameters

  • booking_id integer(int32) Required

    ID of booking to update

  • booking_location_id integer(int32) Required

    ID of booking location to update

Query parameters

  • contact_id integer(int32) Required

    Contact ID of location

  • instructions string

    Location-specific instructions for models

  • is_default boolean

    If location is the default location for all model schedules in the booking

Responses

  • 200 application/json

    Booking location updated

  • 500 application/json

    An unexpected error occurred

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