Generates and returns a single-use scheduling link for a specific scheduling page.
A single-use link can only be used once by an invitee to book a meeting. After the booking is made, the link becomes invalid. This is useful for sending unique booking links to specific invitees, ensuring each link is used only once.
curl --request GET \
--url https://api.zeeg.me/v2/event-types/{uuid}/single-use-link \
--header 'Authorization: Bearer <token>'{
"success": true,
"link": "https://zeeg.me/S/axo3kbv54/30min-discovery-call",
"eventTypeUri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e"
}UUID of the scheduling page
If you have enabled payments for a scheduling page, you can assign a price when generating a single-use scheduling link to override the default price. This is helpful when you want to offer a paid event at a discounted price or completely for free. If your scheduling page has multiple durations, please note that the price override applies to all durations.
curl --request GET \
--url https://api.zeeg.me/v2/event-types/{uuid}/single-use-link \
--header 'Authorization: Bearer <token>'{
"success": true,
"link": "https://zeeg.me/S/axo3kbv54/30min-discovery-call",
"eventTypeUri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e"
}