✨ MoEngage NEXT Spring 2026 — The Future of Engagement is Agentic. Join us on April 28. Register now
curl --request POST \
--url https://api-{dc}.moengage.com/v1.0/business_event/trigger \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"event_name": "Series_Name",
"event_attributes": {
"season": "Season 1",
"episodes": 12,
"cast": [
"John Doe",
"Jane Doe"
],
"date": "11/11/2023"
},
"triggered_by": "john.doe@example.com"
}
'{
"message": "The business event has been triggered"
}This API triggers a business event in MoEngage. You can set up campaigns to be executed when these events are triggered.
curl --request POST \
--url https://api-{dc}.moengage.com/v1.0/business_event/trigger \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"event_name": "Series_Name",
"event_attributes": {
"season": "Season 1",
"episodes": 12,
"cast": [
"John Doe",
"Jane Doe"
],
"date": "11/11/2023"
},
"triggered_by": "john.doe@example.com"
}
'{
"message": "The business event has been triggered"
}Documentation Index
Fetch the complete documentation index at: https://moengage-crashes-in-debug-feedback.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authentication is done via Basic Auth. This requires a base64-encoded string of your credentials in the format 'username:password'.
For more information on authentication and getting your credentials, refer here.
Event to trigger.
The name of the business event to be triggered.
"Series_Name"
This field contains the event attributes with which the business event will be triggered.
Structure: "event_attributes": { "attribute_name1": "", ... }
Every attribute contains the following information: attribute_name - This field contains the name of the business event attribute for which the value is being sent in the request. The attribute_name is a String.
Example: "attribute_name": "season"
{
"season": "Season 1",
"episodes": 12,
"cast": ["John Doe", "Jane Doe"],
"date": "11/11/2023"
}Information about who triggered the business event.
"john.doe@example.com"
This response is returned when the request is processed successfully.
"The business event has been triggered"
Was this page helpful?