curl --request GET \
--url https://api.example.com/v1/calendar/events/{id}{
"data": {
"id": "<string>",
"provider": "<string>",
"title": "<string>",
"description": "<string>",
"location": "<string>",
"conference_url": "<string>",
"start_time": "<string>",
"end_time": "<string>",
"all_day": true,
"recurrence_rule": "<string>",
"attendees": [
{
"email": "<string>",
"name": "<string>",
"response_status": "<string>",
"contact_id": "<string>"
}
],
"organizer_email": "<string>",
"contact_ids": [
{}
],
"deal_id": "<string>",
"task_ids": [
{}
],
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}Retrieve a single calendar event with the complete attendee list and linked entities
curl --request GET \
--url https://api.example.com/v1/calendar/events/{id}{
"data": {
"id": "<string>",
"provider": "<string>",
"title": "<string>",
"description": "<string>",
"location": "<string>",
"conference_url": "<string>",
"start_time": "<string>",
"end_time": "<string>",
"all_day": true,
"recurrence_rule": "<string>",
"attendees": [
{
"email": "<string>",
"name": "<string>",
"response_status": "<string>",
"contact_id": "<string>"
}
],
"organizer_email": "<string>",
"contact_ids": [
{}
],
"deal_id": "<string>",
"task_ids": [
{}
],
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}GET /v1/calendar/events.Authorization: Bearer wbk_your_api_key_here
Show properties
google or microsoftconfirmed, tentative, or cancelledX-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, and X-Request-ID.
curl https://data.leadlex.com/functions/v1/api-gateway/v1/calendar/events/evt_01HYXYZ123 \
-H "Authorization: Bearer wbk_your_api_key_here"
{
"data": {
"id": "evt_01HYXYZ123",
"provider": "google",
"title": "Intro call with Jane Doe",
"description": "Discuss Series B counsel",
"location": "Google Meet",
"conference_url": "https://meet.google.com/abc-defg-hij",
"start_time": "2026-04-18T15:00:00Z",
"end_time": "2026-04-18T15:30:00Z",
"all_day": false,
"recurrence_rule": null,
"attendees": [
{
"email": "jane@acme.com",
"name": "Jane Doe",
"response_status": "accepted",
"contact_id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"organizer_email": "team@emasex.de",
"contact_ids": ["123e4567-e89b-12d3-a456-426614174000"],
"deal_id": null,
"task_ids": [],
"status": "confirmed",
"created_at": "2026-04-10T08:00:00Z",
"updated_at": "2026-04-12T08:00:00Z"
}
}
| Status | Code | Description |
|---|---|---|
| 401 | invalid_key | Invalid or expired API key |
| 403 | insufficient_permissions | Missing read:calendar permission |
| 404 | not_found | Event not found in this workspace |
| 429 | rate_limited | Rate limit exceeded |