Evan

The use of our search is available by default and subject to our privacy policy.

How do I set up webhooks?

Last updated February 26, 2026

Webhooks allow you to receive real-time notifications when events occur in your store, such as when an order is placed, a payment is confirmed, or a replacement is requested. Instead of polling our API for updates, webhooks push event data directly to your server the moment something happens.

Create a webhook

To set up your first webhook, follow the steps below:

  1. Visit your webhook settings or copy and paste this link into your browser: https://dash.antistock.io/settings/webhooks.
  2. Tap on “Add Webhook” and enter your endpoint URL. This is the URL on your server where Antistock will send event data.
  3. Select the events you want to listen for. You can subscribe to specific events like order creation, payment confirmation, and replacement requests, or listen to all events.
  4. Save your webhook configuration.

Security

Every webhook payload is signed with a secret key unique to your account. When your server receives a webhook, you should verify the signature to confirm that the payload was sent by Antistock and hasn't been tampered with in transit. This prevents unauthorized third parties from sending fake events to your endpoint.

Testing

After creating your webhook, we recommend testing it with a real or sandbox transaction to confirm that your server is correctly receiving and processing the event data. You can view recent webhook delivery attempts and their response codes from your webhook settings dashboard.

For detailed payload formats, event types, and signature verification examples, refer to our Developer API documentation.

Did this answer your question?