Get a Scheduling Page
Retrieve a single scheduling page by UUID, including its profile, custom invitee questions, duration, and configuration.
curl --request GET \
--url https://api.zeeg.me/v2/event-types/{uuid} \
--header 'Authorization: Bearer <token>'{
"resource": {
"uri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
"uuid": "80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
"title": "30-Minute Discovery Call",
"type": "ONE_ON_ONE",
"slug": "30min-discovery-call",
"schedulingUrl": "https://zeeg.me/lena-meier/30min-discovery-call",
"isActive": true,
"duration": 30,
"eventDurations": [
{
"minutes": 30,
"default": true
}
],
"profile": {
"type": "User",
"firstName": "Lena",
"lastName": "Meier",
"slug": "lena-meier",
"url": "https://zeeg.me/lena-meier",
"avatarUrl": null,
"email": "lena.meier@horizondigital.de"
},
"description": "<p>Let's connect for a quick 30-minute discovery call to explore how we can help your business grow.</p>",
"color": "2196f3",
"maxActiveInvitees": 1,
"inviteeNameFormat": "FULL_NAME",
"inviteePhoneNumber": false,
"inviteeQuestions": [
{
"id": 1,
"order": 1,
"question": "What would you like to discuss?",
"isActive": true,
"isRequired": true,
"type": "TEXT_INPUT",
"options": null
}
],
"notifications": {
"inviteeConfirmation": "email",
"addEventLinkNotif": true,
"bccEmails": null,
"excludePII": false,
"excludeHostEmails": false,
"privateCalendarEvent": false,
"defaultNotifications": {},
"customNotifications": {},
"notificationVariables": []
},
"currentTime": "2026-03-23T10:00:00.000000Z",
"isSecret": false
}
}Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
UUID of a specific scheduling page
Response
OK
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Numeric ID of the question, used when submitting answers via the booking API.
Notification settings for this scheduling page, including invitee email behaviour, host email behaviour and the templates used by the dashboard UI.
Hide child attributes
Hide child attributes
How the invitee is notified once a booking is confirmed. calendar_invitation sends a calendar invite from the host's connected calendar, email sends a Zeeg confirmation email, none sends nothing.
calendar_invitation, email, none When true, invitee notification emails include a link to the event detail page.
Up to three email addresses that are BCC'd on invitee notification emails. Business-plan feature; null or an empty array when unused.
3When true, host notification emails omit the invitee's personal information.
When true, hosts do not receive confirmation, update or cancellation emails for events booked on this scheduling page.
When true, the calendar event synced to the host's connected calendar (Google, Microsoft or Exchange) is marked as private, so people with access to the host's calendar see only the busy time and not the subject, attendees or location.
Pre-filled default templates (subject, body and available variables) for invitee-facing emails, keyed by notification type. Primarily consumed by the dashboard UI.
Customized template overrides (subject and body), keyed by notification type. Only populated for notification types the user has customized.
Assigned hosts for the scheduling page. Populated for ONE_ON_ONE, GROUP, ROUND_ROBIN and COLLECTIVE pages. For FLEXI pages this array is empty; see flexiCollections instead.
Hide child attributes
Hide child attributes
Stable identifier of the host user.
Round-robin priority weighting, when applicable.
Host collections for FLEXI scheduling pages. Empty for all other page types.
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Current server time
curl --request GET \
--url https://api.zeeg.me/v2/event-types/{uuid} \
--header 'Authorization: Bearer <token>'{
"resource": {
"uri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
"uuid": "80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
"title": "30-Minute Discovery Call",
"type": "ONE_ON_ONE",
"slug": "30min-discovery-call",
"schedulingUrl": "https://zeeg.me/lena-meier/30min-discovery-call",
"isActive": true,
"duration": 30,
"eventDurations": [
{
"minutes": 30,
"default": true
}
],
"profile": {
"type": "User",
"firstName": "Lena",
"lastName": "Meier",
"slug": "lena-meier",
"url": "https://zeeg.me/lena-meier",
"avatarUrl": null,
"email": "lena.meier@horizondigital.de"
},
"description": "<p>Let's connect for a quick 30-minute discovery call to explore how we can help your business grow.</p>",
"color": "2196f3",
"maxActiveInvitees": 1,
"inviteeNameFormat": "FULL_NAME",
"inviteePhoneNumber": false,
"inviteeQuestions": [
{
"id": 1,
"order": 1,
"question": "What would you like to discuss?",
"isActive": true,
"isRequired": true,
"type": "TEXT_INPUT",
"options": null
}
],
"notifications": {
"inviteeConfirmation": "email",
"addEventLinkNotif": true,
"bccEmails": null,
"excludePII": false,
"excludeHostEmails": false,
"privateCalendarEvent": false,
"defaultNotifications": {},
"customNotifications": {},
"notificationVariables": []
},
"currentTime": "2026-03-23T10:00:00.000000Z",
"isSecret": false
}
}