Webhook
Use the Webhook capability to receive real-time notifications of everything that happens on the API. You only have to set one Webhook URL: all of the notifications will be sent there. With the URL you must also supply a secret
, which allows you to identify that the notifications you are receiving are coming from Build. Your Webhook endpoint must be reachable via HTTPS, and return a 200 HTTP response quickly before executing any complex logic that might result in a timeout.
Set up your webhook receiver
Webhook signatures
A webhook signature is a security measure which allows you to verify the integrity and authenticity of the data you’re receiving. Each webhook contains a hash-based message authentication code (HMAC) in its signature header. All you need to do is take the webhook's body and apply the SHA-1 hash function to it, using your secret as the hash key. You then compare the resulting HMAC to the one contained in the signature header. If the HMACs are identical, then the data corresponds to what we sent. If they are different, this indicates that the data has been intercepted and altered in some way.
Automatic retries
When a webhook notification fails, the retry mechanism begins. We automatically try to resend the webhook notification multiple times, following a schedule. Each retry happens after the specified times:
- 30 secs
- 60 secs
- 90 secs
- 120 secs
- 150 secs
- 180 secs
IP address allowlisting
- Sandbox environment
- 13.237.90.47
- 13.210.78.87
- 54.253.161.136
- Live environment
- 52.63.172.6
- 52.63.244.60
- 52.65.227.86
- 52.65.201.21
- 13.54.136.30
- 3.104.12.185
- 3.24.5.91
- 3.105.126.70
Webhook Catalog
Transaction Notifications
Notification Type | Send Conditions | Payload Example |
---|---|---|
ORDER_WAIT_FOR_REVIEW | When the order is waiting for review | {"type":"ORDER_WAIT_FOR_REVIEW","order_status":"WAIT_FOR_REVIEW","uid":"1707225408442777601","account_id":"1707225409864646656","transaction_amount":"7601.00","module":"transaction","currency":"USD","notification_id":"1725350172391903232","order_id":"1725350164091379712","order_type":"DEPOSIT","notification_time":"1700190511211","order_direct":"IN","creator_info":{"type":"AUTOMATED"}} |
ORDER_PENDING | When the order is pending | {"type":"ORDER_PENDING","order_status":"PENDING","uid":"1707225408442777601","account_id":"1707225409864646656","transaction_amount":"14082.92","module":"transaction","currency":"USD","notification_id":"1725347662121930752","order_id":"1725347016681463808","order_type":"FX","notification_time":"1700189912716","order_direct":"OUT","creator_info":{"type":"API"}} |
ORDER_COMPLETED | When the order is completed | {"type":"ORDER_COMPLETED","order_status":"COMPLETED","uid":"1707225408442777601","account_id":"1707225409864646656","transaction_amount":"7601.00","module":"transaction","currency":"USD","notification_id":"1725350180482715648","order_id":"1725350164091379712","order_type":"DEPOSIT","notification_time":"1700190513140","order_direct":"IN","creator_info":{"type":"AUTOMATED"}} |
ORDER_REJECTED | When the order is rejected | {"type":"ORDER_REJECTED","order_status":"CANCELLED","uid":"1707225408442777601","account_id":"1707225409864646656","transaction_amount":"10000.00","module":"transaction","currency":"USD","notification_id":"1725397260834996224","order_id":"1725397095467458560","order_type":"DEPOSIT","notification_time":"1700201737971","order_direct":"IN","creator_info":{"type":"AUTOMATED"}} |
ORDER_FAILED | When the order is failed | {"type":"ORDER_FAILED","order_status":"CANCELLED","uid":"1706235849487802369","account_id":"1706235851073249280","transaction_amount":"1241.77","module":"transaction","currency":"EUR","notification_id":"1725396480670593024","order_id":"1725335117520707584","order_type":"FX","notification_time":"1700201551965","order_direct":"OUT","creator_info":{"type":"PORTAL"}} |
ORDER_CLOSED | When the order is closed (e.g expired) | {"type":"ORDER_CLOSED","order_status":"CANCELLED","uid":"1707225408442777601","account_id":"1707225409864646656","transaction_amount":"11000.00","module":"transaction","currency":"USD","notification_id":"1725399837615353856","order_id":"1725398704343752704","order_type":"FX","notification_time":"1700202352323","order_direct":"OUT","creator_info":{"type":"API"}} |