# The MollieProfile object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | yes |  |
| `name` | string | yes |  |
| `website` | string | no |  |
| `email` | string | no |  |
| `phone` | string | no |  |
| `status` | string | yes | One of: `unverified`, `verified`, `blocked`. |
| `mode` | string | yes | One of: `live`, `test`. |

```json
{
    "id": "pfl_abc123",
    "name": "Acme Store",
    "website": "https://acme.nl",
    "email": "info@acme.nl",
    "phone": "+31208202070",
    "status": "verified",
    "mode": "live"
}
```
