FAQ
Managing profiles subscriptions
Are people who unsubscribe not by the link in the letter, but in the mail service interface, marked as unsubscribing?
Yes, if mail service supports special header, which is transferred into the letter.
Global unsubscription is performed, if resource was not chosen before mailing.
Resource unsubscription is performed, if resource was chosen before mailing.
Why the profile status is changed when unsubscription from non-resource mailing is performed?
If the mailing is performed without selecting resource, global profile status is used.
If the user will subscribe again, will he restore from the suppression list?
No, if the mailing was performed without resource, or with the same resource. Use API to restore him.
In future, we recommend to use several resource subscriptions.
What is resource identifier?
Resource is the mailing source by one or several channels. For example, one website - one resource.
Resource identifier is a number, which is displayed next to its name. It is used in API queries.
What is the difference between suppression list and unsubscription?
Suppression list and unsubscription are different things. Suppression list is commonly used for temporary exception from the mailings, like the situation when content will have negative reaction from the subscribers.
How can we manage subscription confirmation for users, who can see only text version?
They can also have the link. You can set its name like <name="Name">. Part in angle brackets will not be displayed while mailing.
What essences can be marked with tag in the platform?
You can mark databases, segments, channels, templates, scheduled imports, suppression lists, mailings, campaigns, workflows, promocodes, summary reports.
Why does the number of unsubscribe link clicks not match the number of unsubscribes?
A user can unsubscribe not only via the link in the email, but also through the service interface (e.g., by clicking a button). These actions are not always tracked as link clicks. As a result, the total number of clicks may differ from the number of actual unsubscribes.
Managing databases
How can developer configure data exchange with the website?
Developer must be provided with API token and link to documentation page — see User API.
Can we upload database without email addresses? For example, for SMS mailing.
Yes, you can. Select coincidence by profile email address. This field will be filled with data like "ID@localhost".
Profile identifier will be generated by the platform.
How can we spot subscriber territory or country?
The platform can spot geolocation by IP address.
What field type can be used for currency?
Unfortunately, there are no fractional fields in the database. Use integer type.
How can we transfer resource subscriptions during profile import?
You can include subscriptions array into the data object during subscriptions import like:
subscriptions": [
{
"resource_id": 46,
"channel": "email",
"email_data": {
"email": "example_email@example.org",
},
"priority": 0,
"status": "subscriber"
}, ...
Or simple option:
subscriptions": [
{
"resource_id": 46,
"channel": "email",
"email": "example_email@example.org",
"priority": 0,
"status": "subscriber"
},
Can we transfer several profiles in one API query for profile import?
For several profiles import, use Massive profiles import.
How can we clear the database?
Use API query to clear the database.
Also, you can clear the database using query to MongoDB.
Can we spot devices, OS and browsers used by customers?
Information is collected in the User Agent field in customer profile.
How can we create the field, which displays customer's interests in different categories?
You can create "Tags" type field in the database. Tags can be added and removed manually, using APIs and workflows.