Monitoring and debugging
Observe your integration in production: the analytics overview endpoint, webhook delivery outcomes, and how to debug missed webhooks.
Analytics overview
curl 'https://vantage.tryterra.co/api/v1/overview?since=2026-07-01T00:00:00Z' \
-u 'YOUR_DEV_ID:YOUR_API_KEY'{
"orders": {
"total": 37,
"by_status": {
"order.completed": 29,
"order.processing": 8
}
},
"results": {
"total": 25,
"missing": 4
},
"webhooks": {
"failed_total": 2,
"daily": [
{ "date": "2026-07-18", "failed": 1 },
{ "date": "2026-07-19", "failed": 1 }
]
}
}Webhook delivery outcomes
Debugging a missed webhook
Last updated
Was this helpful?