Skip to main content
GET
/
api
/
webhooks
/
{id}
Get a webhook by ID
curl --request GET \
  --url https://api.vambe.me/api/webhooks/{id}
const options = {method: 'GET'};

fetch('https://api.vambe.me/api/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/webhooks/{id}"

response = requests.get(url)

print(response.text)

Path Parameters

id
string
required

Query Parameters

includeDeleted
boolean
default:false

Response

200

Returns the webhook (including if soft-deleted if specified)