# Delete a Person

**DELETE** `/persons/{personId}/`

Delete a Person

## Request

### Parameters

- `personId` (path, required, string): The ID that uniquely identifies the Person

### Responses

- `204`: The Person was deleted. No content is returned
- `400`: Bad Request
  - Content types: `application/json`
- `404`: Not found response
  - Content types: `application/json`
- `409`: Cannot delete the Person, probably because it is associated with live Bundles
  - Content types: `application/json`
