Skip to main content
POST
/
v1
/
webhooks
/
{webhook_id}
/
test
Test Webhook
curl --request POST \
  --url https://api.example.com/v1/webhooks/{webhook_id}/test
import requests

url = "https://api.example.com/v1/webhooks/{webhook_id}/test"

response = requests.post(url)

print(response.text)
const options = {method: 'POST'};

fetch('https://api.example.com/v1/webhooks/{webhook_id}/test', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "success": true,
  "duration_ms": 123,
  "http_status": 123,
  "error": "<string>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Headers

authorization
string | null

Path Parameters

webhook_id
string<uuid>
required

Response

Successful Response

success
boolean
required
duration_ms
integer
required
http_status
integer | null
error
string | null