Update webhook endpoint
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.
Endpoint5 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
idpath | UUID | yes | Webhook endpoint ID |
url | string | no | New callback URL |
events | string[] | no | Updated event subscriptions. |
description | string | no | Updated description |
is_active | boolean | no | Enable or disable the endpoint |
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/webhooks/${id}`, {
method: 'PATCH',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"events": [
"quote.*",
"logistics.tracking_added"
],
"is_active": true
}),
});
const { data } = await response.json();
console.log(data);Example Request Body
json
{
"events": [
"quote.*",
"logistics.tracking_added"
],
"is_active": true
}Response
json
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"url": "https://your-app.com/webhooks/quip",
"events": [
"quote.tracking_added",
"quote.delivered",
"logistics.tracking_added"
],
"is_active": true,
"updated_at": "2026-03-08T14:00:00Z"
}
}