Skip to main content
Create a test bid from a venue in the sandbox environment. This simulates a venue responding to an RFP with their proposal.

Request Body

event_id
number
required
The event ID this bid is for
venue_name
string
required
Name of the venue submitting the bid
venue_city
string
required
City where the venue is located
total_cost
number
required
Total quoted cost for the event
meeting_space_cost
number
Cost for meeting space rental
accommodation_cost
number
Cost for sleeping rooms
fb_cost
number
Cost for food and beverage
av_cost
number
Cost for AV equipment and services
proposal_notes
string
Additional notes from the venue
bid_status
string
Status of the bid (pending, accepted, rejected)
valid_until
string
ISO 8601 date when the quote expires

Response Format

{
  "bid_id": 1001,
  "event_id": 789,
  "venue_name": "Austin Convention Center Hotel",
  "venue_city": "Austin",
  "total_cost": 125000,
  "meeting_space_cost": 15000,
  "accommodation_cost": 80000,
  "fb_cost": 25000,
  "av_cost": 5000,
  "proposal_notes": "We can accommodate all your requirements with our newly renovated meeting spaces.",
  "bid_status": "pending",
  "valid_until": "2027-02-15T23:59:59Z",
  "created_at": "2025-11-21T13:00:00Z"
}

Example Request

{
  "event_id": 789,
  "venue_name": "Austin Convention Center Hotel",
  "venue_city": "Austin",
  "total_cost": 125000,
  "meeting_space_cost": 15000,
  "accommodation_cost": 80000,
  "fb_cost": 25000,
  "av_cost": 5000,
  "bid_status": "pending",
  "valid_until": "2027-02-15T23:59:59Z"
}