QuipteamsREST API

Test 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.

Endpoint1 params

Parameters

NameTypeDescription
idpathUUID
Webhook endpoint ID
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/webhooks/${id}/test`, {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
});

const { data } = await response.json();
console.log(data);

Response

json
{
  "data": {
    "success": true,
    "endpoint_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "response_status": 200,
    "latency_ms": 142
  }
}