# The PaymentCreated object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | yes |  |
| `mollie_payment_id` | string | yes |  |
| `status` | string | yes | One of: `open`, `pending`. |
| `mollie_checkout_url` | string | yes |  |

```json
{
    "id": "pay_abc123",
    "mollie_payment_id": "tr_abc123",
    "status": "open",
    "mollie_checkout_url": "https://www.mollie.com/checkout/test-mode?method=ideal&token=abc123"
}
```
