Skip to main content
GET
/
v1
/
calendar
/
events
/
{id}
Get Calendar Event
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>"
  }
}

Request

Path Parameters

id
string
required
Event identifier returned by GET /v1/calendar/events.

Headers

Authorization: Bearer wbk_your_api_key_here

Response

data
object
Responses include X-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"

Example Response

{
  "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"
  }
}

Errors

StatusCodeDescription
401invalid_keyInvalid or expired API key
403insufficient_permissionsMissing read:calendar permission
404not_foundEvent not found in this workspace
429rate_limitedRate limit exceeded