Aura Logo
AuraAPI Docs
OpenapiV1WebhooksId

Get webhook subscription by ID

Retrieve detailed information about a specific webhook subscription.

Response includes:

  • Event type
  • Target URL
  • Creation timestamp
  • Note: The signing secret is never returned for security
GET
/v1/webhooks/{id}

Path Parameters

idstring

Webhook subscription ID (UUID)

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/webhooks/550e8400-e29b-41d4-a716-446655440000"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "event_type": "call.booked",
    "target_url": "https://api.example.com/webhooks/aura",
    "created_at": "2026-01-17T08:00:00Z"
  }
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}