Retrieves all events configured for the org. This includes both standard and custom events.
API endpoint example
<http://eu.api.capillarytech.com/v2/events>
Prerequisites
- Authentication: Basic or OAuth credentials
- Access group resource: Read access on Behavioural Events resource
Resource information
URI | /v2/events |
HTTP Method | GET |
Pagination | No |
Batch support | No |
Rate limit information | NA |
Request payload
curl --location 'http://eu.api.capillarytech.com/v2/events' \
--header 'Authorization: Basic VzdWNlRkYg==' \
--header 'Cookie: _cfuvid=cVUZ35z5krdCM26evqA.B0plrMHwkF57TihY2N7Cp0k-1718948790910-0.0.1.1-604800000'
Response parameters
Parameter | Data Type | Description |
---|---|---|
data |
Array of Objects |
Object containing event metadata and field mapping information. |
|
Object |
Object containing metadata related to the event. |
-- eventId |
String |
Unique identifier generated for the event at the time of its creation. |
-- eventName |
String |
Name of the event. |
-- actions |
Object |
Object containing a list of event handlers that process the event. |
-- fields |
Array of Objects |
Object containing the details of the fields of the event. |
--- name |
String |
Name of the field. |
--- type |
String |
Data type or data related to the field. Example: STRING, DOUBLE, CUSTOMER |
--- attributes |
Object |
Attributes associated with the field. |
---- accountId |
Object |
Object containing customer account-related information for the field. |
----- valueType |
String |
Data type of the value of accountId. |
---- addCustomerIfNotExists |
Object |
Object containing information for adding customers if they do not exist. |
----- value |
Boolean |
Specifies if customers should be added if they do not exist. |
----- valueType |
String |
Indicates the data type of the value of addCustomerIfNotExists. |
---- identifierType |
Object |
Contains information on customer identifier type. |
----- value |
String |
Customer identifier name. |
----- valueType |
String |
Data type of the value of identifierType. |
---- isRequired |
Object |
Object containing information on whether the field is mandatory. |
----- value |
Boolean |
Value indicating if the field is mandatory. Values: |
----- valueType |
String |
Data type of the value of isRequired. |
---- source |
Object |
Contains information on the source of customer creation . |
----- value |
String |
Source of customer creation. |
----- valueType |
String |
Datatype of the value of source. |
---- isPsiData |
Object |
Object indicating if the field contains Protected Sensitive Information. For more information refer, Classify Potentially Sensitive Information (PSI) |
----- value |
Boolean |
Value indicating if Protected Sensitive Information is present. Values: |
----- valueType |
String |
Dataype of the value of isPsiData. |
---- regex |
Object |
Object containing information for regex. |
----- valueType |
String |
Datatype of the value of regex. |
-- orgId |
Integer |
Organisation ID for which the events are created. |
-- status |
String |
Indicates if the event is published. |
-- testStatus |
String |
Indicates if the event is verified for data flow. |
-- label |
String |
Display name of the event. |
-- description |
String |
Description of the event. |
-- date |
Integer |
Timestamp for the event in UNIX epoch format. |
-- standardEvent |
Boolean |
Indicates if the event is standard or custom. A value of |
|
Object |
Object containing information on field mapping. For more information see, Transformer. |
-- defaultTransformerMapping |
Object |
Object containing information on default field mapping. |
--- eventNameMapping |
Object |
Object containing information on mapping the event name. |
---- valueMap |
Object |
Object containing the event name for mapping. |
--- eventFieldMappings |
Array of Objects |
Object containing information on the mapping of the event's fields. |
---- eventFieldName |
String |
Name of the field for the event. |
---- fieldName |
String |
Value the field is mapped to. |
-- webEngageTransformerMapping |
Object |
Object containing information on mapping for WebEngage. For more information see, WebEngage. |
--- eventNameMapping |
Object |
Object containing information on mapping the event name. |
---- valueMap |
Object |
Object containing the event name for mapping. |
--- eventFieldMappings |
Array of Objects |
Object containing information on the mapping of the event's fields. |
---- eventFieldName |
String |
Name of the field for the event. |
---- fieldName |
String |
Value the field is mapped to. |
warnings |
Object |
Object containing a list of warning messages, if any. |
errors |
Object |
Object containing a list of error messages, if any. |
{
"data": [
{
"clickEventsMeta": {
"eventId": "e5e99bc08aa62321978661fea1d750c4",
"eventName": "Testing_3",
"eventType": "USEREVENT",
"actions": [
"EIConsumer"
],
"fields": [
{
"name": "userId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "deviceId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "Testing_3",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Testing_3",
"description": "subscribe a Channel",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "a927234bff097b96f55d76af894d9268",
"eventName": "TestEventWithDate",
"eventType": "USEREVENT",
"actions": [
"EMFConsumer",
"EIConsumer"
],
"fields": [
{
"name": "CustomerId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "createdDate",
"type": "DATE",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Date Event",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "98ed645f4af37c8e78f730ff05693de8",
"eventName": "Testing_2",
"eventType": "USEREVENT",
"actions": [
"EIConsumer"
],
"fields": [
{
"name": "userId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "deviceId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "Testing_2",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Testing_1",
"description": "Unsubscribe a Channel",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "eeecd8aa478ec24f5477fdadbaa20c1b",
"eventName": "UCCtesttarget3",
"eventType": "USEREVENT",
"actions": [
"EMFConsumer",
"EIConsumer"
],
"fields": [
{
"name": "userID",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "points",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "UCCtesttarget3",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "cda868ab8e45f92627424685fc9aa419",
"eventName": "UCCtesttarget2",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "userId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "deviceId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "UCCtesttarget2",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "points",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "UCCtesttarget2",
"description": "un/subscribe a Channel",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "516f327076e55fcc52afb9592e3c8ffd",
"eventName": "Testing_1",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "userId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "deviceId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "eventTime",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Testing_1",
"description": "Unsubscribe a Channel",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "6cb354c56da0d8fd555ea7296a173f69",
"eventName": "TestBE-Rutuja",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "Boolean"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "String",
"type": "TILLCODE",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"description": "This is a demo event created && updated by Rutuja Hatwar",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "f7d31950cc2ef1fbb3c03af1b00207a1",
"eventName": "Group_User_Event",
"eventType": "USEREVENT",
"actions": [
"EMFConsumer"
],
"fields": [
{
"name": "customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "Boolean"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "String",
"type": "TILLCODE",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "enum",
"type": "GROUPID",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"groupIdentifierType": {
"value": "GroupExternalId",
"valueType": "ENUM"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "false",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "8dc87bcc1a938e5196f0f69b3a6f4ba4",
"eventName": "DemoTest20250428",
"eventType": "PRODUCTEVENT",
"actions": [
"EMFConsumer"
],
"fields": [
{
"name": "customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "Boolean"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "rutuja_capillary",
"type": "TILLCODE",
"attributes": {
"isRequired": {
"value": "true",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "sku",
"type": "PRODUCTSKU",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Sparkles",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Bricks",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Cement",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Names",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "true",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "ae7d505b4e3288168a234c5e9f472b00",
"eventName": "categoryViewed",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "customerId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "MOBILE",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "categoryCode",
"type": "PRODUCTCATEGORY",
"attributes": {
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Category Viewed",
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "3631d781a9ac9fee518bf6910d77a271",
"eventName": "TestEvent1",
"eventType": "PRODUCTEVENT",
"actions": [
"EMFConsumer"
],
"fields": [
{
"name": "customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "Boolean"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "till",
"type": "TILLCODE",
"attributes": {
"isRequired": {
"value": "true",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "sku",
"type": "PRODUCTSKU",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Sparkles",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Bricks",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Cement",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
},
{
"name": "Names",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "true",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"date": 1747636361544,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "1390fd606e560de05dd45a6bd6555b7f",
"eventName": "addedToCart",
"eventType": "PRODUCTEVENT",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "customerId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "MOBILE",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
},
"standardField": true
},
{
"name": "cartId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
},
"standardField": true
},
{
"name": "skuCode",
"type": "PRODUCTSKU",
"attributes": {
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
},
"standardField": true
},
{
"name": "brandCode",
"type": "PRODUCTBRAND",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
},
"standardField": true
},
{
"name": "categoryCode",
"type": "PRODUCTCATEGORY",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
},
"standardField": true
},
{
"name": "quantity",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
},
"standardField": true
},
{
"name": "price",
"type": "DOUBLE",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
},
"standardField": true
},
{
"name": "productName",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
},
"standardField": true
},
{
"name": "productType",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
},
"standardField": true
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Added To Cart",
"description": "Added To Cart",
"date": 1747636361544,
"standardEvent": true
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "2fedcc95da465d06504b8fe9e36917b4",
"eventName": "TestingEvent_FE",
"eventType": "USEREVENT",
"actions": [
"EMFConsumer",
"EIConsumer"
],
"fields": [
{
"name": "Customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "TestingEvent_FE",
"date": 1747636361545,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "45319f76a7d8d9a8c108ecc75bd85767",
"eventName": "promotionViewed",
"actions": [
"EIConsumer",
"EMFConsumer"
],
"fields": [
{
"name": "customerId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "MOBILE",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "promotionId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "promotionName",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "Promotion Viewed",
"date": 1747636361552,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": {
"eventNameMapping": {
"valueMap": {
"promotionViewed": "promotionViewed"
}
},
"eventFieldMappings": [
{
"eventFieldName": "customerId"
},
{
"eventFieldName": "promotionId"
},
{
"eventFieldName": "promotionName"
}
]
},
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "dbfca3b86bd501fa6fa92b0c682b8f58",
"eventName": "Event_Rutuja",
"actions": [
"EIConsumer"
],
"fields": [
{
"name": "customer",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "Boolean"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "String",
"type": "TILLCODE",
"attributes": {
"isRequired": {
"value": "false",
"valueType": "Boolean"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"date": 1747636361552,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "f51e85918c4496c0fefad7859cffb430",
"eventName": "testing_event",
"eventType": "USEREVENT",
"actions": [
"EIConsumer"
],
"fields": [
{
"name": "userId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "false",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "userId",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
},
{
"name": "deviceId",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "false",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
},
{
"name": "testing_event",
"type": "STRING",
"attributes": {
"isPsiData": {
"value": "false",
"valueType": "BOOLEAN"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"isUniqueKeyField": {
"value": "false",
"valueType": "BOOLEAN"
},
"regex": {
"valueType": "STRING"
}
}
}
],
"orgId": 100737,
"status": "UNPUBLISHED",
"testStatus": "NOT_VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "testing_event",
"description": "un/subscribe a Channel",
"date": 1747636361552,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
},
{
"clickEventsMeta": {
"eventId": "92b06dd34906b983474a3414b72bb635",
"eventName": "TestingEvent_FE_Rutuja",
"eventType": "USEREVENT",
"actions": [
"EMFConsumer",
"EIConsumer"
],
"fields": [
{
"name": "CustomerId",
"type": "CUSTOMER",
"attributes": {
"accountId": {
"valueType": "ENUM"
},
"addCustomerIfNotExists": {
"value": "true",
"valueType": "BOOLEAN"
},
"identifierType": {
"value": "mobile",
"valueType": "ENUM"
},
"isRequired": {
"value": "true",
"valueType": "BOOLEAN"
},
"source": {
"value": "INSTORE",
"valueType": "ENUM"
}
}
}
],
"orgId": 100737,
"status": "PUBLISHED",
"testStatus": "VERIFIED",
"connectedOrgContext": {
"orgType": "STANDARD_ORG"
},
"label": "TestingEvent_FE",
"date": 1747636361552,
"standardEvent": false
},
"transformerMappings": {
"defaultTransformerMapping": null,
"webEngageTransformerMapping": null
}
}
],
"warnings": [],
"errors": []
}