GET
/
api
/
event
/
getEventData
/
{event_id}
curl --request GET \
  --url https://app.flashquotes.com/api/event/getEventData/{event_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "clh2x4j9s0000qw3v5km8j1t2",
  "location": {
    "id": "loc_123",
    "name": "Downtown Venue",
    "address": "123 Main St, Seattle, WA 98101"
  },
  "resources": [
    {
      "id": "res_456",
      "type": "espresso_machine",
      "name": "La Marzocco GB5"
    }
  ],
  "staff": [
    {
      "id": "staff_789",
      "name": "Jane Smith",
      "role": "Lead Barista"
    }
  ],
  "addons": [
    {
      "id": "addon_101",
      "name": "Specialty Syrups Package",
      "quantity": 1
    }
  ],
  "booking": {
    "id": "book_202",
    "status": "confirmed"
  },
  "eventBriefId": "brief_303"
}

This endpoint returns comprehensive information about a specific event, including its location, resources, staff assignments, and associated booking details.

Response

The response includes a detailed event object containing:

  • Event identification and basic details
  • Location information (venue name, address)
  • Assigned resources (equipment, machines)
  • Staff assignments and roles
  • Associated addons
  • Booking status and details
  • Event brief reference

Common Use Cases

  • Retrieving event details for display
  • Checking resource and staff assignments
  • Verifying event location and timing
  • Accessing booking information
  • Confirming addon selections

Notes

  • The event ID must be valid and associated with your company
  • Returns a 404 error if the event is not found
  • All event times are returned in ISO 8601 format with timezone
  • Access requires a valid API key with appropriate permissions

Authorizations

x-api-key
string
header
required

Path Parameters

event_id
string
required

ID of event to retrieve

Response

200
application/json
Event data response
id
string
required

The unique identifier of the event

location
object
resources
object[]
staff
object[]
addons
object[]
booking
object
eventBriefId
string

The ID of the associated event brief