Aura Logo
AuraAPI Docs
OpenapiV1WebhooksTest

Test webhook subscription

Send a test webhook payload to verify your endpoint is working.

Test Payload:

{
  "event": "your.event.type",
  "created_at": "2026-01-17T08:00:00Z",
  "data": {
    "test": true,
    "message": "This is a test webhook from Aura"
  },
  "organization_id": "org_xxx"
}

Response:

  • HTTP status code from your endpoint
  • Response time in milliseconds
  • Success/failure message

Use this to:

  • Verify your endpoint is publicly accessible
  • Test HMAC signature verification
  • Check response time and availability
POST
/v1/webhooks/test
subscription_idstring

Webhook subscription ID to test

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.aura-app.ai/v1/webhooks/test" \  -H "Content-Type: application/json" \  -d '{    "subscription_id": "550e8400-e29b-41d4-a716-446655440000"  }'
{
  "success": true,
  "message": "Test webhook sent successfully to https://api.example.com/webhooks/aura",
  "status_code": 200,
  "response_time_ms": 145
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}