Skip to content

Delete webhook

DELETE /v1/default/banks/{bank_id}/webhooks/{webhook_id}

Remove a registered webhook.

Authentication required — include an Authorization: Bearer hsk_... header. See Authentication for details.

Path Parameters

NameTypeRequiredDescription
bank_idstringYes
webhook_idstringYes

Example Request

bash
curl -X DELETE 'https://api.hindsight.vectorize.io/v1/default/banks/your-bank-id/webhooks/your-webhook-id' \
  -H 'Authorization: Bearer hsk_your_api_key'

Responses

200 — Successful Response

json
{
  "deleted_count": 10,
  "message": "Deleted successfully",
  "success": true
}

422 — Validation Error

json
{
  "detail": [
    {
      "loc": [
        null
      ],
      "msg": "Message",
      "type": "Error Type",
      "input": null,
      "ctx": {},
      "url": "URL"
    }
  ]
}

Source: /v1/default/banks/{bank_id}/webhooks/{webhook_id}