curl --request POST \
--url https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'import requests
url = "https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event"
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event', 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.augustus.com/v1/webhook_subscriptions/{id}/send_test_event",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Idempotency-Key: <idempotency-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"
"net/http"
"io"
)
func main() {
url := "https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
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.augustus.com/v1/webhook_subscriptions/{id}/send_test_event")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440008",
"type": "event",
"event_type": "payout.initiated",
"api_version": "2026-05-01",
"created_at": "2026-01-15T10:30:00Z",
"data": {}
}Send test event
Dispatches a signed ping.test event to this subscription’s URL through the same pipeline as real events. Useful for verifying your receiver’s reachability and signature verification in any environment without creating a real business event. Test-event failures do not affect the subscription’s health counters or trigger failure-notification emails.
curl --request POST \
--url https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'import requests
url = "https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event"
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event', 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.augustus.com/v1/webhook_subscriptions/{id}/send_test_event",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Idempotency-Key: <idempotency-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"
"net/http"
"io"
)
func main() {
url := "https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
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.augustus.com/v1/webhook_subscriptions/{id}/send_test_event")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.augustus.com/v1/webhook_subscriptions/{id}/send_test_event")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440008",
"type": "event",
"event_type": "payout.initiated",
"api_version": "2026-05-01",
"created_at": "2026-01-15T10:30:00Z",
"data": {}
}Authorizations
Bearer token for authentication with Augustus Banking API
Headers
Idempotency key for safe retries. Reusing a key with an identical request body returns the cached response. Reusing a key with a different body returns 409.
Path Parameters
Unique identifier of the webhook subscription.
"550e8400-e29b-41d4-a716-446655440009"
Response
The newly created webhook event. Poll its delivery via GET /v1/webhook_deliveries?event_id={id} for receiver status.
Unique identifier of the event. Matches the envelope id delivered in the webhook payload and is stable across subscription fan-out and retries.
"550e8400-e29b-41d4-a716-446655440008"
Resource type discriminator.
event Event type.
payout.initiated, payout.submitted, payout.sent, payout.failed, payout.returned, return.initiated, return.submitted, return.sent, return.failed, return.returned, deposit.settled, conversion.created, conversion.completed, conversion.failed, account_holder.active, account_holder.closed, ping.test API version the event payload was rendered at. Stable across retries and redeliveries, and mirrored in the webhook envelope api_version field.
"2026-05-01"
ISO 8601 UTC timestamp when the event was created.
"2026-01-15T10:30:00Z"
Event payload. Shape matches the resource schema for event_type.
Show child attributes
Show child attributes
Was this page helpful?