Get webhook details
Webhooks: Subscribe to real-time event notifications via HTTP callbacks. When events occur (tracking added, deliveries, status changes), quipteams sends a signed POST request to your endpoint.
Endpoint1 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
idpath | UUID | yes | Webhook endpoint ID |
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/webhooks/${id}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
},
});
const { data } = await response.json();
console.log(data);Response
json
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"url": "https://your-app.com/webhooks/quip",
"events": [
"quote.tracking_added",
"quote.delivered"
],
"description": "Production handler",
"is_active": true,
"created_at": "2026-03-08T10:00:00Z",
"recent_deliveries": [
{
"id": "d1e2f3a4-b5c6-7890-abcd-ef1234567890",
"event_type": "quote.tracking_added",
"status": "success",
"attempts": 1,
"last_response_status": 200,
"created_at": "2026-03-08T12:30:00Z"
}
]
}
}