> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pagamerican.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Purchase approved

> Fires when a purchase is approved.

**Event:** `order.purchase.created.v1`

Fires when a purchase is approved. `status` is `paid` and `paymentMethod` shows the method used (`credit_card`, `boleto`, `pix`, `paypal`, or `free_price`).

<Note>
  This event also fires for **upsell and downsell** purchases — one delivery per approved purchase in the funnel. No payload field distinguishes the main purchase from an upsell or downsell.
</Note>

## Payload

```json theme={null}
[
  {
    "event": "order.purchase.created.v1",
    "body": {
      "orderId": "34885",
      "platform": "PagAmerican",
      "paymentMethod": "credit_card",
      "status": "paid",
      "createdAt": "2026-02-20 22:03:32",
      "approvedDate": "2026-02-20 22:03:32",
      "customer": {
        "name": "Jane Doe",
        "email": "jane.doe@example.com",
        "phone": "5551234567",
        "country": "US",
        "ip": ""
      },
      "shipping": {
        "address1": "100 Example St",
        "address2": "",
        "city": "Rohnert Park",
        "state": "CA",
        "zipCode": "94928",
        "country": "US"
      },
      "products": [
        {
          "id": "1630",
          "name": "MindCalm - 2 bottles - [U3]",
          "sku": "PAGMINCAL2BOTTLE",
          "offerCode": "cEy6BQCE",
          "quantity": 1,
          "priceInCents": 13800
        }
      ],
      "trackingParameters": {
        "src": "v3_5a96ae1a-9041-48a3-9471",
        "sck": null,
        "utm_source": "YouTube-GH",
        "utm_campaign": "[TOPAF]-[GH]-[NEUROMAX3.0]-C4456",
        "utm_medium": "23487389193",
        "utm_content": "AF 5.2 NC-YT-CV_SD-4",
        "utm_term": "6998da300d7afbce80ada6db"
      },
      "commission": {
        "totalPriceInCents": 13800,
        "gatewayFeeInCents": 947,
        "userCommissionInCents": 12853,
        "currency": "USD"
      },
      "amounts": {
        "itemsGrossInCents": 13800,
        "itemsCouponInCents": 0,
        "itemsNetInCents": 13800,
        "shippingGrossInCents": 0,
        "shippingCouponInCents": 0,
        "shippingNetInCents": 0,
        "taxesInCents": 828,
        "totalInCents": 14628,
        "currency": "USD"
      },
      "isTest": false
    }
  }
]
```

All monetary amounts are in cents. `amounts` carries the full financial breakdown of the charge — including tax and the total the customer actually paid — see [The `amounts` breakdown](/webhooks/overview#the-amounts-breakdown).
