Backwork
API Reference

Delete webhook endpoint

Soft-delete a webhook endpoint. It will no longer receive deliveries. Requires an API key with write or admin scope.

DELETE
/webhooks/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API keys are prefixed with bwk_live_ for production or bwk_test_ for testing. Example: bwk_live_abc123xyz

Keys issued before the current format carry the vrt_live_/vrt_test_ prefix. Both prefixes are accepted while integrations rotate.

In: header

Path Parameters

id*integer

Response Body

application/json

curl -X DELETE "https://backworkhealth.com/api/v1/webhooks/0"
{
  "success": true,
  "data": {
    "id": 0,
    "deleted": true
  }
}

Last updated on