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://inevent.com/api/?action=event.person.dismiss&tokenID=YOUR_TOKEN_HERE&eventID=YOUR_EVENT_ID&personID=PERSON_ID' \
     --header 'Accept: application/json'

Response

{
  "count": 0,
  "data": []
}