Business Webhooks
Events
Event
Description
Fields
{
"event": string, // Name of the event
"id": string // Charge identifier,
"description": string // description of the payment
"fiatCurrency": string // Fiat currency in which the payment was requested,
"payment": {
"amount": string // amount paid
"currencyCode": string // code of the currency used (BTC, ETH...)
}
"createdAt": string // ISO string with the creation timestamp of the payment
"updateAt": string // ISO string with the last update timestamp of the payment
"metadata": object // Object with any metadata you passed during charge creation
}Last updated