> For the complete documentation index, see [llms.txt](https://developers.inevent.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.inevent.com/attendee-api/removing-attendees.md).

# 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": []
}
```
