Troubleshoot Webhooks

If you're encountering issues with webhooks, review the following for the most likely causes and solutions.

Link to section

I didn't receive my webhook notification

Link to section

Likely cause

Square webhook notifications typically send within 60 seconds of the associated event. Applications must acknowledge the notification by responding within 10 seconds with an HTTP 2xx response code to acknowledge the successful delivery. Unsuccessful deliveries are retried for up to 72 hours. After 72 hours, the notification is discarded and not sent again.

Link to section

Solution

Verify that your application is responding to notification deliveries in the required time period with an HTTP 2xx response code.

Link to section

Likely cause

Square webhook notifications require OAuth authorizations. For example, your application receives a payment.created notification for a particular seller if it's authorized by that seller with a PAYMENTS_READ scope.

Link to section

Solution

Make sure that your application has the appropriate OAuth authorizations for each seller.

Link to section

I cannot validate a webhook notification against my webhook subscription

Link to section

Likely cause

You've defined more than one webhook subscription for the client ID that identifies your application. You might have configured one v1 webhook subscription and one v2 webhook subscription or configured two v2 webhook subscriptions to be sent to a common webhook listener address. If so, you're matching the notification signature for one webhook event with the subscription signature of a different webhook.

Link to section

Solution

Define a unique webhook listener for each subscription and then update each webhook subscription with the notification URL intended to handle events on that subscription. You shouldn't define a v2 webhook subscription that emits events for the same API that you're already handling with a v1 webhook subscription. Instead, deprecate your v1 webhook subscription and replace it with a v2 subscription.

Link to section

See also