Borderless Docs
  • Get Started
    • Welcome to Borderless
    • Quick Start
  • About us
    • About us
      • Supported countries
  • Reference
    • API Reference
      • Authentication
      • Users
      • KYC
      • Rates
      • Orders
      • Webhooks
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Webhooks

PreviousOrders

Last updated 1 year ago

Set Url's to receive notifications, we will notify you about orders and kyc status changes.

Set Order notification URL

Set Kyc notification URL

  • Set Order notification URL
  • POSTSet webhook URL to receive Order status updates notifications
  • Set Kyc notification URL
  • POSTSet webhook URL to receive kyc updates notifications

Set webhook URL to receive Order status updates notifications

post
Authorizations
Body
urlstringRequired

The Url to receive order updates

Example: https://mywebhookurl/order
Responses
200
Created
401
Unauthorized
500
Internal server error
post
POST /merchant/webhook/order-notification HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 36

{
  "url": "https://mywebhookurl/order"
}

No content

Set webhook URL to receive kyc updates notifications

post
Authorizations
Body
urlstringRequired

The Url to receive kyc updates

Example: https://mywebhookurl/kyc
Responses
200
Created
401
Unauthorized
500
Internal server error
post
POST /merchant/webhook/kyc-notification HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 34

{
  "url": "https://mywebhookurl/kyc"
}

No content