@if(!$editingId)
Workspace
@foreach($this->workspaces as $workspace)
@endforeach
@endif
NameURLThe endpoint that will receive webhook POST requests.Events
@foreach($this->availableEvents as $eventKey => $eventInfo)
@endforeach
Max Retry AttemptsNumber of times to retry failed deliveries (1-10).Inactive webhooks will not receive any events.
Cancel
{{ $editingId ? 'Update' : 'Create' }}
{{-- Deliveries Modal --}}
Delivery History
EventStatusHTTPAttemptsTime
@forelse($this->recentDeliveries as $delivery)
{{ $delivery->getEventDisplayName() }}
{{ ucfirst($delivery->status->value) }}
{{ $delivery->http_status ?? '-' }}
{{ $delivery->attempts }}
{{ $delivery->created_at->diffForHumans() }}
@if($delivery->isFailed())
Retry
@endif
@empty
No deliveries yet.
@endforelse
Close
{{-- Secret Modal --}}
Webhook Secret
Save this secret now. It will not be shown again.
{{ $displaySecret }}
Use this secret to verify webhook signatures. The signature is sent in the
X-Signature header
and is a HMAC-SHA256 hash of the JSON payload.