Webhooks
List Active Webhook Subscriptions and Endpoints
Retrieve all active webhook registrations for your organization. Signing secrets are redacted from all list responses for security.
GET
Python
Returns all active webhook endpoint registrations associated with your enterprise organization. The response includes each webhook’s unique identifier, registered target URL, status, and subscribed event types.
Cryptographic signing secrets are permanently redacted from list responses. If you need to inspect or replace a secret, use the Rotate Webhook Secret endpoint to generate and retrieve a new one.
Response Fields
| Field | Type | Description |
|---|---|---|
webhookId | string | Unique identifier for the webhook registration (e.g. wh_12345) |
status | string | Registration status — ACTIVE for live subscriptions |
targetUrl | string | The registered HTTPS callback URL |
eventTypes | string[] | List of compliance event types this webhook is subscribed to |
Authorizations
Enterprise API Key provided via the AgriBackup developer console.
Response
List of active webhooks successfully retrieved
Response containing webhook subscription details (signing secret redacted)
The unique identifier of the webhook registration
Example:
"wh_12345"
Status of registration
Example:
"ACTIVE"
The registered callback target URL
Example:
"https://erp.example.com/agribackup-webhooks"
Event types subscribed to
Event types subscribed to
Register a Webhook Endpoint for EUDR Compliance Events
Previous
Rotate the HMAC-SHA256 Signing Secret for a Webhook
Next