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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.inevent.com/attendee-api/removing-attendees.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
