cURL
curl --request GET \ --url https://api.attention.tech/v2/calendar_events/{user_uuid} \ --header 'Authorization: <api-key>'
{ "pageCount": 2, "totalRecords": 20, "pageNumber": 1, "pageSize": 10, "items": [ { "uuid": "event_123", "summary": "Sales Team Meeting", "description": "Weekly sales team sync", "startTime": "2024-03-20T10:00:00Z", "endTime": "2024-03-20T11:00:00Z", "joinUrl": "https://zoom.us/j/123456789", "participants": [ { "id": "participant_123", "email": "john.doe@example.com", "organizer": true, "name": "John Doe", "status": "accepted" } ] } ] }
Returns a paginated list of calendar events from a specific user
User UUID
Filter events starting from this date-time (inclusive)
Filter events until this date-time (inclusive)
Page number for pagination
Number of items per page
Successfully retrieved calendar events page
Show child attributes
Was this page helpful?