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. 👩‍🏫User Management

👩‍🦳Deleting a User

This step shows how to remove users from your Groups platform.

Example request:

curl -L -X DELETE 'https://<DOMAIN>/xapi/v2/user/:USER_GUID'
client.users.delete_by_user_id("6D9D158D-5A41-4FE5-A151-DE008BC978DE");

Example response:

A successful delete operation will return 204 No Content without any body.

PreviousUpdating a UserNextSelecting a User

Last updated 1 month ago

Was this helpful?