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

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

url = "https://api.vambe.me/api/webhooks/calls"

response = requests.get(url)

print(response.text)

Query Parameters

includeDeleted
boolean
default:false
webhookId
string<uuid>
contactId
string<uuid>
cursor
integer
default:0
Required range: x > 0
limit
integer
default:10
Required range: 0 < x < 100

Response

200

Returns cursor-paginated webhook call history