> For the complete documentation index, see [llms.txt](https://docs.checkout.pretium.africa/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.checkout.pretium.africa/webhooks/payloads.md).

# Payloads

When a transaction is completed, Pretium sends two webhook notifications

#### Payment notification

When a transaction is completed by the user, our API automatically sends a webhook to the webhook URL configured on the merchant portal.

```
{
   "status": "COMPLETE",
   "order_id":"701cc1d3-01e",
   "message": "Success, payment received successfully!"
}

```

#### Merchant settlement

If the merchant has enabled automatic settlements, the payment will be automatically disbursed to their set mobile money or bank account, and our API will send a webhook to the webhook URL configured on the merchant portal.

```
{
   "status": "COMPLETE",
   "transaction_code":"7dced6e3-53bf-4dca-9fde-49b7e6121ec5",
   "receipt_number":"TL1QRBRFUD",
   "public_name":" Joe Doe",
   "message": "Transaction processed successfully."
}

```
