Skip to main content

Profile import + trigger campaign launch

Description

A new customer profile import followed by a trigger campaign launch.

URL

Method: POST

https://example.com/api/v1.1/campaigns/triggers/import_and_start

Request parameters

ParametersTypeExampleRequiredDescription
Profile import
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
dataJSON object
{
"_fname": "John",
"_lname": "Doe"
}
YesProfile fields data
skip_triggersbooltrueNoSkip trigger events.
By default – false
skip_invalid_subscriptionsbooltrueNoSkip invalid subscriptions
By default – false
detect_geobooltrueNoDetect location by _regip or _ip from data object
Profile matching mode
matchingstring

"email"
"email_profile"
"phone"
"profile_id"
"custom"

No, if matched by email from profile or subscriptionsProfile matching mode
By default - email
emailstring"john@example.com""matching":"email" - both profile data and subscriptions

"matching":"email_profile" - profile data only
Email address
phonestring"+79000000000""matching":"phone"Phone number
profile_idstring"abcdefghijklmnqrstuvwxyz""matching":"profile_id"Profile ID
field_namestring"CRM_ID""matching":"custom"Custom profile data field name
field_valueint/string"123420""matching":"custom"

Custom profile data field value.

tip

Searching by combination of tags is available for tag type profile fields. Values are recorded as a string: "tag-1, tag-2".

resource_idint24NoResource ID for email and phone matching
Trigger launch
trigger_idint13YesTrigger campaign ID
timeoutJSON object
{
"days": 0,
"hours": 0,
"minutes": 5
}
NoTrigger start timeout. Specify the days, hours, and minutes to set the timeout period.
custom_dataJSON object
{
"sending_time": "12:31:12"
}
NoAdd some data to be used in Action hooks.
contentJSON object
{
"page": "registration_form"
}
NoData you can use in a message template using {apicontent.fieldname} variable
attachJSON objects array
{
"data": "data:text/csv;base64,SEVMTE8K",
"name": "Attach.txt"
}
NoA file you can attach to an Email message

Request example

{
"token": "care13fulwi3thttha2taxe43euge2ne",
"matching": "email",
"email": "example@example.com",
"detect_geo": true,
"data": {
"_fname": "Olly",
"_lname": "Lambert",
"email": "example@example.com",
"phones": [
"+790000000000"
],
"_bdate": "1990-02-22T21:00:00Z",
"custom_field": "custom_value",
"subscriptions": [
{
"channel": "email",
"email": "example@example.com",
"resource_id": 1
},
{
"channel": "phone",
"phone": "+790000000000",
"resource_id": 1
}
]
},
"trigger_id": 13,
"timeout": {
"days": 0,
"hours": 0,
"minutes": 5
},
"custom_data": {
"sending_time": "12:31:12"
},
"content": {
"page": "registration_form"
},
"attach": [
{
"data": "data:text/csv;base64,5LuK5pel44GvCg==",
"name": "Attach.txt"
}
]
}

Response example

{
"error": 0,
"error_text": "",
"profile_id": "54759eb3c090d83494e2d804"
}
caution

Subscription to the Resource that is used by the trigger campaign has to be sent within profile data object. If not — the following mistake will be sent back:

{
"error": 400,
"error_text": "No active subscriptions passed for trigger resource"
}

Response parameters

ParameterTypeDescription
errorintError code
error_textstringError description
profile_idstringImported profile ID