mono-logo

Webhook Events

Last updated May 19th, 2022

Introduction

Mono uses webhooks to communicate updates on transaction objects initiated with the API and kick off additional workflows based on these events. Each time an event that you listen to occurs, Mono submits a POST request to the designated Webhook URL with information about the event transactions.

Your endpoint should respond to webhooks as quickly as possible. To acknowledge receipt of a webhook, your endpoint must return a 2xx HTTP status code. This status code should only indicate receipt of the message, not acknowledgement that it was successfully processed by your system. Any other information returned in the response headers or response body is ignored.

Authentication

All Webhook requests are sent with a mono-webhook-secret header for verification. It should match the secret you passed when creating the webhook.

Failure

If Mono could not reach the URL, all the webhooks will be retried. Also, all Webhook URLs must respond with a status 200 ok or the request will be considered unsuccessful and retried.

Did this page help you?