# List Persons

**GET** `/persons/`

List Persons

## Request

### Parameters

- `search` (query, string): A search query.
- `email` (query, string): Filter persons by email address. Only persons with the specified email will be returned.

E.g. `/persons/?email=john@example.com`

- `phone` (query, string): Filter persons by phone number. Only persons with the specified phone number will be returned.

E.g. `/persons/?phone=+1234567890`

### Responses

- `200`: A response with a list of Persons
  - Content types: `application/json`
