# Search bookings Search for orders/bookings by customer email. Endpoint: GET /v2/bookings Version: 1.0.0 Security: ApiKeyAuth ## Query parameters: - `email_id` (string, required) Customer email address to search by. Example: "customer@example.com" ## Response 200 fields (application/json): - `orders` (array, required) List of orders/bookings associated with the given customer email. - `orders.order_id` (integer, required) Internal unique identifier for the order/booking. Example: 123456 - `orders.rfp_parent_id` (string, required) Identifier linking this order/booking back to the parent RFP (group). Example: "string" - `orders.venue_id` (integer, required) Internal unique identifier of the venue. Example: 25465 - `orders.status` (string, required) Current status for the order/booking. Values may vary by configuration. Example: "string" ## Response 400 fields (application/json): - `message` (string) Human-readable error message ## Response 401 fields (application/json): - `message` (string) Human-readable error message ## Response 429 fields (application/json): - `message` (string) Human-readable error message ## Response 500 fields (application/json): - `message` (string) Human-readable error message ## Response 503 fields (application/json): - `message` (string) Human-readable error message