API Reference Overview
EventType
Parameter Reference: Understands the parameters needed for the Booking API.
GET /v1/event_types/mzgdPJVBb7RE
{
"data": {
...
"eventTypeId": "mzgdPJVBb7RE",
"locations": [
{ "locationId": "googleMeet" }
],
...
}
}
GET /v1/event_types/mzgdPJVBb7RE/available_schedules
{
"data": [
{
"startedAt": "2024-04-01T02:00:00.000Z",
"remainingCapacity": 1
}
]
}
Booking
This API supports the necessary operations for users to complete the booking process. By referencing the EventType API to obtain the necessary parameters and using the POST Booking API, users can make events.
POST /v1/bookings
{
"eventTypeId": "mzgdPJVBb7RE",
"timeZone": "Asia/Tokyo",
"startedAt": "2024-04-01T02:00:00.000Z",
"email": "guest@example.com",
"name": "average joe",
"location": "googleMeet"
}