Create a webhook config
curl --request POST \
--url https://api.usebila.com/api/v1/bila/webhooks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"url": "https://example.com/webhooks",
"events": [
"payment.completed",
"withdrawal.completed"
]
}
'import requests
url = "https://api.usebila.com/api/v1/bila/webhooks"
payload = {
"url": "https://example.com/webhooks",
"events": ["payment.completed", "withdrawal.completed"]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
url: 'https://example.com/webhooks',
events: ['payment.completed', 'withdrawal.completed']
})
};
fetch('https://api.usebila.com/api/v1/bila/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.usebila.com/api/v1/bila/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'url' => 'https://example.com/webhooks',
'events' => [
'payment.completed',
'withdrawal.completed'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.usebila.com/api/v1/bila/webhooks"
payload := strings.NewReader("{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.usebila.com/api/v1/bila/webhooks")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.usebila.com/api/v1/bila/webhooks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Operation completed successfully",
"data": {
"id": "68f11209-451f-4a15-bfcd-d916eb8b09f4",
"merchantId": "68f11209-451f-4a15-bfcd-d916eb8b09f5",
"url": "https://example.com/webhooks/bila",
"secret": "a1b2****c3d4",
"events": [
"payment.completed",
"collection.completed"
],
"isActive": true,
"createdAt": "2026-04-01T10:00:00.000Z",
"updatedAt": "2026-04-15T14:30:00.000Z"
}
}Webhooks
Create a webhook config
POST
/
api
/
v1
/
bila
/
webhooks
Create a webhook config
curl --request POST \
--url https://api.usebila.com/api/v1/bila/webhooks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"url": "https://example.com/webhooks",
"events": [
"payment.completed",
"withdrawal.completed"
]
}
'import requests
url = "https://api.usebila.com/api/v1/bila/webhooks"
payload = {
"url": "https://example.com/webhooks",
"events": ["payment.completed", "withdrawal.completed"]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
url: 'https://example.com/webhooks',
events: ['payment.completed', 'withdrawal.completed']
})
};
fetch('https://api.usebila.com/api/v1/bila/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.usebila.com/api/v1/bila/webhooks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'url' => 'https://example.com/webhooks',
'events' => [
'payment.completed',
'withdrawal.completed'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.usebila.com/api/v1/bila/webhooks"
payload := strings.NewReader("{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.usebila.com/api/v1/bila/webhooks")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.usebila.com/api/v1/bila/webhooks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"https://example.com/webhooks\",\n \"events\": [\n \"payment.completed\",\n \"withdrawal.completed\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Operation completed successfully",
"data": {
"id": "68f11209-451f-4a15-bfcd-d916eb8b09f4",
"merchantId": "68f11209-451f-4a15-bfcd-d916eb8b09f5",
"url": "https://example.com/webhooks/bila",
"secret": "a1b2****c3d4",
"events": [
"payment.completed",
"collection.completed"
],
"isActive": true,
"createdAt": "2026-04-01T10:00:00.000Z",
"updatedAt": "2026-04-15T14:30:00.000Z"
}
}Authorizations
Merchant API key (e.g., sk_live_xxx or sk_test_xxx)
Body
application/json
Webhook endpoint URL
Example:
"https://example.com/webhooks"
Event types to subscribe to
Available options:
order.created, order.paid, order.cancelled, stock.low, payment.created, payment.completed, payment.failed, collection.pending, collection.completed, collection.failed, withdrawal.created, withdrawal.completed, withdrawal.failed, transaction.updated, transfer.pending, transfer.completed, transfer.failed, settlement.completed Example:
["payment.completed", "withdrawal.completed"]
Was this page helpful?
⌘I
