Delete Webhook

Delete a webhook.

API endpoint example

http://eu.api.capillarytech.com/v3/webHooks/69254f46749e644bc01328c1

Prerequisites

  • Authentication: Basic or OAuth authentication details
  • Access group resource: Read and write permission on webhook resource group.

Resource information

URL/v3/webHooks/{webHookId}
HTTP methodDELETE
Pagination supported?NA
Rate limitNA
Batch supportNA

Request parameters

(Parameters marked with * are mandatory)TypeDescription
webHookId*StringIdentifier for the webhook.
curl --location --request DELETE 'http://eu.api.capillarytech.com/v3/webHooks/69254f46749e644bc01328c1' \
--header 'Authorization: Basic ****' \
--header 'Cookie: _cfuvid=yYsH7ns18uvZ6yJ8YEDgIPw.ZjqHMYsSsHCnY00XLAM-1764052824812-0.0.1.1-604800000'

Response parameters

ParameterDescription
dataContains main details about the webhook configuration.
-attributionMetadata about the creation and last update of the webhook.
-- createdOnTimestamp when the webhook was created. It is in the local time zone of the org and in ISO 8601 format.
-- lastUpdatedOnTimestamp when the webhook was last updated. It is in the local time zone of the org and in ISO 8601 format.
-- lastUpdatedByInformation about the user who last updated the webhook.
--- idUnique identifier of the user.
--- codeCode of the user.
--- descriptionDescription of the user.
--- nameName of the user.
--- typeType of user. Example: TILL
-- createdByInformation about the user who created the webhook.
--- idUnique identifier of the user.
--- codeCode of the user.
--- descriptionDescription of the user.
--- nameName of the user.
--- typeType of user. Example: TILL
webHookIdUnique identifier of the webhook.
nameName of the webhook.
eventNamesList of event names that trigger the webhook.
webHookUrlURL where the webhook sends its requests.
webHookTypeType of webhook, Example: HTTP
methodTypeHTTP method used by the webhook. Example: POST, PUT, GET or DELETE.
webHookHeadersHeaders sent with the webhook request.
-AuthorizationAuthorization header for authentication.
-Content-TypeSpecifies the content, Example: application/json
noOfRetryAttemptsNumber of retry attempts configured.
maxAllowedConnectionsMaximum allowed concurrent connections for this webhook.
activeIndicates if the webhook is active.
slaInSecondsExpected delivery time of the event notification in seconds. This is used to track notifications that took more time than the SLA set.
consumerGroupIdIdentifier for the consumer group.
tillDetailsEnrichmentEnabledIndicates if the event payload is enriched with till details.
storeDetailsEnrichmentEnabledIndicates if the event payload is enriched with store details
customerIdentifiersToBeEnrichedList of customer identifiers enrichment available in the payload.
awardedReferenceEnrichmentEnabledIndicates if the event payload is enriched with awarded reference ID . It is a unique identifier associated with each issued point or redemption transaction within the system.
availablePointsBalanceEnrichmentEnabledIndicates if the event payload is enriched with the available points balance.
errorsArray containing errors, if any.
warningsArray containing warnings, if any.

Sample response

{
    "data": {
        "attribution": {
            "createdOn": "2025-11-25T06:40:06.036+0000",
            "createdOnISO": "2025-11-25T06:40:06Z",
            "lastUpdatedOn": "2025-11-25T08:58:27.608+0000",
            "lastUpdatedOnISO": "2025-11-25T08:58:27Z",
            "lastUpdatedBy": {
                "id": 75152722,
                "code": "divya_doc",
                "description": "",
                "name": "divya_doc",
                "type": "TILL"
            },
            "createdBy": {
                "id": 75152722,
                "code": "divya_doc",
                "description": "",
                "name": "divya_doc",
                "type": "TILL"
            }
        },
        "webHookId": "69254f46749e644bc01328c1",
        "name": "All_Events_v3",
        "eventNames": [
            "loyaltyCustomerMerge",
            "partnerProgramLinked",
            "pointsExpired",
            "customerAdded",
            "transactionUpdated",
            "groupUpdated",
            "promisedToCurrentPointsConversion",
            "pointsTransferredReceived",
            "groupMemberRemoved",
            "groupCreated",
            "partnerProgramUpdated",
            "pointsIssued",
            "tierDowngradeReminder",
            "pointsContributionToGroup",
            "CouponRedeem",
            "pointsExpiryReminder",
            "partnerProgramDelinked",
            "CouponIssue",
            "tierRenewed",
            "tierDowngraded",
            "pointsTransferredInitiated",
            "customerUpdated",
            "tierUpgraded",
            "rewardIssued",
            "pointsExpiryChange",
            "rewardUpdated",
            "supplementaryMembershipExpiryReminder",
            "singlePointsExpiryUpdated",
            "issuedPointsReversed",
            "redeemedPointsReversed"
        ],
        "webHookUrl": "https://eo4qiclzg50n2q8.m.pipedream.net",
        "webHookType": "HTTP",
        "methodType": "PUT",
        "webHookHeaders": {
            "Authorization": "Basic Q2FwaWxsYXJ5OklVTmhjR2xzYkdGeWVVQTROekl5",
            "Content-Type": "application/json"
        },
        "noOfRetryAttempts": 0,
        "maxAllowedConnections": 10,
        "active": false,
        "slaInSeconds": 150,
        "consumerGroupId": "b3bd2ff7-1525-46d0-b855-08bee77209fc",
        "listenToChildEvents": false,
        "tillDetailsEnrichmentEnabled": false,
        "storeDetailsEnrichmentEnabled": false,
        "customerIdentifiersToBeEnriched": [],
        "awardedReferenceEnrichmentEnabled": false,
        "availablePointsBalanceEnrichmentEnabled": false
    },
    "errors": null,
    "warnings": null
}
Language
Credentials
Basic
base64
:
URL
Click Try It! to start a request and see the response here!