Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 929 Bytes

update-booking-request.md

File metadata and controls

35 lines (27 loc) · 929 Bytes

Update Booking Request

Structure

UpdateBookingRequest

Fields

Name Type Tags Description
idempotencyKey string | undefined Optional A unique key to make this request an idempotent operation.
Constraints: Maximum Length: 255
booking Booking Required Represents a booking as a time-bound service contract for a seller's staff member to provide a specified service
at a given location to a requesting customer in one or more appointment segments.

Example (as JSON)

{
  "idempotency_key": null,
  "booking": {
    "version": null,
    "status": null,
    "start_at": null,
    "location_id": null,
    "customer_id": null,
    "customer_note": null,
    "seller_note": null,
    "appointment_segments": null,
    "location_type": null,
    "creator_details": null,
    "source": null
  }
}