Create a test bid from a venue in the sandbox environment. This simulates a venue responding to an RFP with their proposal.
Request Body
The event ID this bid is for
Name of the venue submitting the bid
City where the venue is located
Total quoted cost for the event
Cost for meeting space rental
Cost for food and beverage
Cost for AV equipment and services
Additional notes from the venue
Status of the bid (pending, accepted, rejected)
ISO 8601 date when the quote expires
{
"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"
}