Webhook events are delivered to your registered endpoint as HTTP POST requests. Configure webhooks in the Developer Portal. See the Webhooks Guide for setup instructions and signature verification.
All webhook deliveries share a common envelope. The data field varies by event type.
eventIdeventTypecreatedAtdataContent-Typeapplication/jsonX-Giftronaut-Signaturesha256={hex}User-AgentGiftronautAPI-Webhook/1.0balance.ach_approvedTriggered when an ACH top-up request is approved and funds are added to the account.
{
"eventType": "balance.ach_approved",
"data": {
"organizationId": "ORG-001",
"amount": 5000.00,
"currency": "USD",
"approvedBy": "admin@giftronaut.com"
}
}
balance.ach_rejectedTriggered when an ACH top-up request is rejected.
{
"eventType": "balance.ach_rejected",
"data": {
"organizationId": "ORG-001",
"amount": 5000.00,
"currency": "USD",
"reason": "Insufficient documentation"
}
}
order.createdTriggered when a reward link order is created and ready for processing. Particularly useful for tracking asynchronous reward link order completion.
{
"eventType": "order.created",
"data": {
"orderId": "OT20260415001234",
"orderType": "LINK",
"cardType": "BRANDED_CARD",
"quantity": 10,
"totalCost": {"amount": 500.00, "currency": "USD"}
}
}
test.pingSent when you click Send Test in the webhook dashboard. Use this to verify your endpoint is receiving and processing webhooks correctly.
{
"eventType": "test.ping",
"data": {
"message": "This is a test webhook from Giftronaut API.",
"endpointId": 42
}
}
The following events are planned for future releases:
balance.low_balancebalance.depletedorder.delivery_completeorder.delivery_partialorder.bouncedorder.canceledrecipient.redeemedcampaign.triggeredStart typing to search...
Select the APIs you want to integrate. A ready-to-use Markdown file with full API specs and a project context template will be generated and downloaded. Paste it into your AI assistant to get started instantly.