Referencia APIv1Webhooks
List webhooks
List all webhook endpoints registered for the store. Never returns the secret.
X-API-Key<token>
Per-store API key created in the dashboard at Settings > Developer > API Keys.
In: header
Response Body
application/json
curl -X GET "https://api.whatalo.com/v1/webhooks"{
"data": [
{
"id": "wh_abc123",
"url": "https://myapp.com/webhooks",
"events": [
"order.created",
"order.updated"
],
"is_active": true,
"last_triggered_at": "string",
"failure_count": 0,
"created_at": "string",
"updated_at": "string"
}
]
}