> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Visitor

> Removes a registered visitor.

# Delete Visitor

Cancels and removes a visitor registration. The visitor will no longer receive arrival notifications.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="visitorId" type="number" required>
  Numeric identifier of the visitor to remove.
</ParamField>

## Response

Returns a `200 OK` on success.

## Examples

### Delete a visitor

```http theme={null}
DELETE /api/public/visitors/55
Authorization: Bearer {token}
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

await httpClient.delete(endpoints.visitors.delete(55))
```
