Webhooks

Fetch Webhook

GET
This endpoint retrieves a particular Webhook of a customer by the ID provided in the path.

Path parameters

webhookIdintegerRequired

Response

This endpoint returns an object
type
string
The event type for the webhook.
url
string
The URL where events for this webhook will be sent.
id
integerOptional
Unique identifier for the webhook managed by Impilo.
GET
1curl https://app.impiloplatform.com/api/v3/webhook/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "type": "order.status",
3 "url": "https://impilo.health",
4 "id": 123
5}