For the complete documentation index, see llms.txt. This page is also available as Markdown.

Webhook Documentation

This webhook documentation outlines how to integrate and handle payment notifications from FonpageEdge.

When a payment is successfully processed, a webhook notification will be sent to your provided webhook url

The webhook will send a JSON payload to your endpoint, with the following structure:

$signature = hash_hmac('sha512', $payload, SECRETE_KEY);
headers = {
  'token': 'FONPAYEDGE_SECRETE_KEY',
  'signature': 'HMAC_512_HASh',
  'Content-Type': 'application/json'
}
{
    "customerEmail": "customer@emai.com",
    "amount":"2000",
    "dateTime":"2012-08:22",
    "reference":"232321"
}

Last updated