v1

latestOpenAPI 3.1.02026-08-04127114.4 KB
Webhook Configurations

Delete Webhook Configuration

Remove a webhook configuration.

  • Specify tenant_id to delete a tenant-specific configuration.
  • Omit tenant_id to delete the default configuration.
delete/webhook-configurations

Request body

webhook_type'ENRICHMENT_DATA' | 'ENRICHMENT_NOTIFICATION' | 'USER_TAGS_DATA' | 'USER_TAGS_NOTIFICATION' | 'INSIGHTS' required

The type of webhook to configure:

  • ENRICHMENT_DATA: Data-rich Transaction Enrichment webhooks (full payload)
  • ENRICHMENT_NOTIFICATION: Non-data-rich Enrichment webhooks (notification only, fetch data from the /cleanup/{batch_request_id} endpoint)
  • USER_TAGS_DATA: Data-rich User Tags webhooks (full payload)
  • USER_TAGS_NOTIFICATION: Non-data-rich User Tags webhooks (notification only)
  • INSIGHTS: Finsights/insights webhooks

Response

Webhook configuration deleted successfully.

deletedboolean

Whether the configuration was successfully deleted.

idinteger

The ID of the deleted configuration.

Example response

{
  "deleted": true,
  "id": 1
}