cURL
Interact with the API directly using cURL.
Authentication
curl https://meeva.app/v1/auth/me \
-H "Authorization: ApiKey <your_api_key>"Create Booking
curl -X POST https://meeva.app/v1/bookings \
-H "Authorization: ApiKey <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"eventTypeId": "evt_123",
"startTime": "2024-01-20T10:00:00Z",
"attendee": {
"email": "user@example.com",
"firstName": "John"
}
}'