Get a Webhook
Returns detailed information for a specific webhook.
GET https://api.platica.mx/v1/webhooks/{webhookId} URL parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
webhookId | string | Unique identifier of the webhook | ✓ |
Response
{
"workspaces": [
{
"id": "ws_123",
"name": "Soporte Técnico",
"webhooksCount": 1,
"webhooks": [
{
"id": "webhook_abc123",
"name": "Webhook de Notificaciones",
"url": "https://mi-app.com/webhook",
"events": [
"conversation.created",
"conversation.operation.updated",
"message.created",
"client.created",
"whatsapp.flows.exchanges"
],
"active": true,
"secret": "mi_secreto_seguro",
"headers": {
"Authorization": "Bearer token123",
"Custom-Header": "valor personalizado"
},
"workspaceId": "ws_123",
"creationDate": "2025-01-15T10:30:00Z",
"lastUpdate": "2025-01-15T10:30:00Z"
}
]
}
]
}