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
Numeric identifier of the visitor to remove.
Response
Returns a 200 OK on success.
Examples
Delete a visitor
DELETE /api/public/visitors/55
Authorization: Bearer {token}
TypeScript Integration
import endpoints from '@/api/endpoints'
await httpClient.delete(endpoints.visitors.delete(55))