InEvent Developers
  • Introduction
    • Company environment
    • Event environment
    • Regions
  • Best practices
  • Data types
  • Spreadsheet reports
  • Changelog
  • API Reference
  • AUTHENTICATION
    • How it works
    • Permission levels
    • Token scopes
    • Access token
  • Event API
    • Creating events
    • Editing events
    • Listing events
    • Custom domain
  • Attendee API
    • Creating attendees
    • Editing attendees
    • Removing attendees
    • Listing attendees
Powered by GitBook
On this page
  1. Attendee API

Removing attendees

To remove an attendee, you must use the event.person.dismiss endpoint with an admin tokenID on Global Scope and access to the Event Environment (or Company Environment). You must provide your tokenID, eventID and personID as query attributes.

Example

curl --request GET \
     --url 'https://api.inevent.com/?action=event.person.dismiss&tokenID=YOUR_TOKEN_HERE&eventID=YOUR_EVENT_ID&personID=PERSON_ID' \
     --header 'Accept: application/json'

Response

{
  "count": 0,
  "data": []
}
PreviousEditing attendeesNextListing attendees

Last updated 8 months ago