Campaign Started
Event ID
txt
campaigns.started
Event Description
The event triggers when campaign status changed to started
.
Fields
Field | Description |
---|---|
data.campaign | Information about campaign |
data.campaign.title | Campaign name |
data.campaign.status | Campaign status, can be only running |
data.campaign.slug | Campaign identifier used to access campaign info in public API |
data.campaign.started_at | Campaign started at datetime, in UTC timezone |
data.app | Information about Application |
data.app.uuid | App unique identifier |
data.app.name | Application name |
Example Payload
json
{
"event": {
"id": "e7fe07b8-ae6d-440d-a3db-b20f4a267ce6",
"type": "campaigns.started"
},
"data": {
"campaign": {
"title": "Campaign title",
"status": "running",
"slug": "campaign-slug",
"started_at": "2023-01-01T10:00:00.00000Z"
},
"app": {
"uuid": "81721046-5c8f-4b44-aeb8-dce0adb5c4e3",
"name": "App Name"
}
}
}