# 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

```sh
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

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