Getting Started

Setting Up Webhooks

  1. Log into your dashboard at https://b2b.wearecashless.com/login.

  2. Navigate to Webhooks.

  3. Add your webhook URL.


Webhook Delivery

  • Timeout: If your server doesn’t respond within 15 seconds, the attempt is marked as failed.
  • Retries: Failed webhooks are retried up to 3 times using exponential backoff:
    • 1st retry: after 5 seconds
    • 2nd retry: after 15 seconds
    • 3rd retry: after 45 seconds
  • Best Practice: Keep your webhook handler lightweight. Offload any intensive tasks (e.g. DB writes, notifications) to a background job system to prevent timeouts.