Skip to content

Automatic Webhook

After a successful payment, a POST request with payment information is sent to the notification URL specified in the project settings.

Webhook Parameters

ParameterValueExampleDescription
statusstringsuccessOrder status
invoiceobject{{...}}Invoice ID and title
methodobject{{...}}Cryptocurrency ID and name
amountdecimal0.0005Payment amount in cryptocurrency
inUSDdecimal40.94Payment amount in USD ($)

Example Response

json
{
    "status": "success",
    "invoice": {
        "id": "d298c343-78a6-44bf-8975-f30a76a8f35f",
        "title": "My invoice #1232"
    },
    "method": {
        "id": "USDT-ERC20",
        "title": "USDT (ERC-20)"
    },
    "amount": 100,
    "inUSD": 100
}

Payp