{
  "resource": "session",
  "id": "{{ RESOURCE_ID }}",
  "clientAccessToken": "dddiweodh23973yo23d2h...",
  "status": "open",
  "mode": "live",
  "amount": {
    "currency": "EUR",
    "value": "10.00"
  },
  "description": "Order #12345",
  "redirectUrl": "https://example.com/redirect",
  "cancelUrl": "https://example.com/cancel",
  "metadata": {
    "orderId": "12345"
  },
  "payment": {
    "webhookUrl": "https://webshop.example.org/payments/webhook"
  },
  "lines": [
    {
      "description": "Product A",
      "quantity": 1,
      "unitPrice": {
        "currency": "EUR",
        "value": "10.00"
      },
      "totalAmount": {
        "currency": "EUR",
        "value": "10.00"
      }
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.mollie.com/v2/sessions/{{ RESOURCE_ID }}",
      "type": "application/hal+json"
    }
  }
}
