webhooks
Create Webhook
Register a webhook for validation events.
POST
/
v1
/
webhooks
Create Webhook
curl --request POST \
--url https://api.example.com/v1/webhooks \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"events": [
"<string>"
],
"secret": "<string>",
"format": "<string>"
}
'import requests
url = "https://api.example.com/v1/webhooks"
payload = {
"url": "<string>",
"events": ["<string>"],
"secret": "<string>",
"format": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({url: '<string>', events: ['<string>'], secret: '<string>', format: '<string>'})
};
fetch('https://api.example.com/v1/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"secret": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I
Create Webhook
curl --request POST \
--url https://api.example.com/v1/webhooks \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"events": [
"<string>"
],
"secret": "<string>",
"format": "<string>"
}
'import requests
url = "https://api.example.com/v1/webhooks"
payload = {
"url": "<string>",
"events": ["<string>"],
"secret": "<string>",
"format": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({url: '<string>', events: ['<string>'], secret: '<string>', format: '<string>'})
};
fetch('https://api.example.com/v1/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"secret": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}