Webhook
Webhook​
After a successful transaction, our system will send an HTTP POST request to the specified webhook URL. This allows your website to automatically process payment confirmations (e.g., update order status, grant access, send a confirmation email, etc.).
Please enter your webhook URL below. Ensure that your endpoint is ready to receive and handle POST requests with JSON payload.
Payload Example:
{
"transaction": "abc123token",
"order_id": "order456",
"status": "success",
"private_key": "your_website_private_key",
"metadata": {
"customer_id": "uuid7890",
"email": "[email protected]",
"amount": 49.99,
"currency": "USD"
}
}
🔒 Make sure your webhook URL is secure and verifies incoming requests to prevent unauthorized access.