# The Payment object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | yes |  |
| `mollie_payment_id` | string | yes |  |
| `mollie_payment_status` | string | yes | One of: `open`, `canceled`, `pending`, `authorized`, `expired`, `failed`, `paid`. |
| `webhook_url` | string | no |  |

```json
{
    "id": "pay_abc123",
    "mollie_payment_id": "tr_abc123",
    "mollie_payment_status": "paid",
    "webhook_url": "https://example.com/webhook"
}
```
