Groups API Documentation
CtrlK
English V2
English V2
  • 🚀Quick Start
    • 🔑Creating API Keys
    • 🔓Authorization
      • Authorization with Python
  • ⚙️Services
    • 👩‍🏫User Management
      • 👶Creating a User
      • 👩Updating a User
      • 👩‍🦳Deleting a User
      • Selecting a User
      • 🕵️‍♀️Searching Users
    • 📙Session Management
      • ⛳Creating and Updating Sessions
        • Create Session Object
        • Update Session Object
        • Session Options Object
      • ❌Deleting a Session
      • Selecting a Session
      • 📚Searching Sessions
    • 👩‍🎓Attendee Management
      • ✍️Creating and Updating Attendees
        • 🔗Attendance Link
        • Upsert by User
        • Upsert by Email (Guests)
        • Update By Attendance Code
      • Deleting an Attendee
      • Selecting an Attendee
      • Searching Attendees
    • 📄Reports
      • Participant Stats
        • ParticipantStat
      • Session Stats
  • 🔨Misc
    • Error Codes
    • 🪝Webhooks
  • accepted formats
    • 📅Dates
    • 🇺🇳Languages
    • 🙋‍♀️Roles
    • 🕙Timezones
Powered by GitBook
On this page

Was this helpful?

  1. ⚙️Services
  2. 👩‍🎓Attendee Management
  3. ✍️Creating and Updating Attendees

🔗Attendance Link

This page will describe how to obtain the attendance link for the participant to enter the session.

To create an attendance link for a participant, you can utilize the attendance_code returned by requests like so:

https://<DOMAIN>/app/?c=<ATTENDANCE_CODE>
client.attendees.getAttendanceLink("5786FF4C-4A93-45A2-BAF1-9461F376E8C5");

The constructed string is the link that participants can use the attend the session.

PreviousCreating and Updating AttendeesNextUpsert by User

Last updated 5 months ago

Was this helpful?