sendEvent
Track customer behavior and trigger automations by sending custom or predefined system events to Omnisend. Utilize event data, including contact details and properties, for targeted marketing actions.
Instructions
Send a customer event to Omnisend. Events are used to track customer behavior and can trigger automations. Can be custom events or predefined system events.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventData | Yes | Event data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"eventData": {
"additionalProperties": false,
"description": "Event data",
"properties": {
"contact": {
"additionalProperties": true,
"description": "Contact information",
"properties": {},
"type": "object"
},
"eventName": {
"description": "Event name",
"type": "string"
},
"eventTime": {
"description": "Event time in RFC3339 format",
"type": "string"
},
"eventVersion": {
"description": "Event version",
"type": "string"
},
"properties": {
"additionalProperties": true,
"description": "Additional event properties",
"properties": {},
"type": "object"
}
},
"required": [
"eventName",
"contact"
],
"type": "object"
}
},
"required": [
"eventData"
],
"type": "object"
}