Wallet Callbacks
We provide a series of HTTP callbacks that allow you to notify users when funds have been deposited and when they become available.
When callbacks are sent Callbacks are sent whenever a transactional event occurs that will affect the wallet's balance. Examples include:
Incoming pending transaction
Pending transaction confirmed
Outgoing transaction
You may receive two callbacks for a single transaction. This is especially true for transactions on the blockchain. In these cases, you would receive one callback when the transaction is first observed and one callback once the transaction is confirmed.
Callback Acceptance and Retries Your system should respond to the callback request with a 200 response. We only attempt to send the request once, but we may introduce automatic retries in the future. We can manually resend callbacks upon request.
Result Format
The callback payload will be a JSON representation of the transaction that has caused the callback to trigger.
Last updated
Was this helpful?