Add Webhook

A Webhook (also called a web callback or HTTP push API) is a way for an app to provide other applications with real-time information. A webHookUri is generated which can be used for the integration.

Request Body Parameters

ParameterTypeDescription
transformerTypestringSpecifies the type of transformer used to process incoming webhook data.
tillCodestringTill code to associate with the current Webhook. Events posted through this Webhook’s URL will be linked to this store TILL.
authEnabledbooleanEnables authentication for the Webhook.
authMechanismstringDefines the authentication mechanism (e.g., Basic).
uniquenessCheckEnabledbooleanEnables or disables the uniqueness check for events.
{
    "transformerType": "WebEngageTransformer",
    "tillCode": "rutuja_capillary",
    "authEnabled": false,
    "authMechanism": "Basic",
    "uniquenessCheckEnabled": false
}

Response Parameters

ParameterTypeDescription
transformerTypestringIndicates the transformer type used (e.g., "WebEngageTransformer").
uniquenessCheckEnabledbooleanIf true, duplicate events are filtered; if false, all events are processed.
tillCodestringThe Till code associated with the webhook for store mapping.
webHookUristringThe auto-generated URL where events should be sent (unique to this webhook).
authEnabledbooleanIndicates whether authentication is enabled (true/false).
warningsarrayLists non-critical issues during webhook creation.
{
    "transformerType": "WebEngageTransformer",
    "uniquenessCheckEnabled": false,
    "tillCode": "rutuja_capillary",
    "webHookUri": "https://spd6hzcltl.execute-api.eu-west-1.amazonaws.com/eucrm/webhooks/e4492fc546c93453ff177f356356a7b3",
    "authEnabled": false,
    "warnings": []
}

API specific Error code

Error CodeDescriptionReason
1839auth mechanism not presentauthenabledfield passed as false
1808customer event transformer not presentInvalid or unsupported transformertype

For information on event uniqueness check, see Event uniqueness check.

Language
Credentials
Basic
base64
:
URL
Click Try It! to start a request and see the response here!