Advanced content personalization
Overview
The content personalization is an advanced feature. It is very powerful but it requires some development (building or configuring an API, and edit HTML messages using a special markup language…)
It is a paid feature that is disabled by default on MailUp accounts. Please contact your sales reference person if you wish to try it out.
Use cases
You should be interested in the “content personalization” feature if your “job to be done” includes at least one of these:
Access to unlimited custom fields for content personalization, overcoming the current MailUp limit of 39 fields
Simplify message building when the content is mostly available outside MailUp (i.e. avoiding useless data copy)
Retrieve content in real time, just before sending, from an external service (e.g. for up-to-date product recommendations)
Getting started
Here is a short list of the steps to be followed:
First build the external service
Start building a web service on your platform. This service has to be a public URL that accepts an unique user ID as a parameter (e.g. the email, the customer ID...). When called, it must return a JSON dataset containing user specific information.
Then reference your service on MailUp
You can extend MailUp settings with a reference to your service(s). The URL of any of these services is called endpoint. Several endpoints may be added, then you can link them to a specific MailUp message or to a list. This operation can be done through the web interface of your MailUp account or using the API methods described in this page
Finally create a message that requires the service and send it
Create an email message and add HTML blocks containing a special markup language called Liquid, whose tags use curly brackets and allow very powerful statements
Just before sending the email, MailUp queries the predefined endpoint for each campaign’s recipient. The returned values will replace the tags built with Liquid markup
Fields are replaced in real time, so this is a perfect solution if you have a product recommendation engine that provides an URL for querying it
Note: as the provider of the external service, you are supposed to know well the returned JSON object (field names, nested structures...) so that you know the names of the placeholders/tags you have to add to your messages
Technical details
Endpoint specification (request)
The external endpoint shall be called using HTTP GET and optional querystring parameters. Basic Authentication and custom authorization headers are supported.
The endpoints’ signature should support one of the formats shown in the table below. Other formats may be supported, please ask if you need more.
Template | Description | Example |
---|---|---|
MY_ENDPOINT_URL/EMAIL | query by email | https://personalization.mysite.com/product/john@example.com |
MY_ENDPOINT_URL/RECIPIENT_FIELD | query by a MailUp personal field, like firstname or ClientID | |
MY_ENDPOINT_URL/EMAIL?FIELD1=value,FIELD2=value | more query parameters can be used by specifying key-value pairs |
In additional to personal data fields, you may invoke the external endpoint by specifying also one or more of the following querystring parameters:
Parameter name | Description | Example |
---|---|---|
IdConsole | MailUp account ID | 59484 |
IdList | MailUp list ID | MailUp message ID |
groups | MailUp groups the recipient is matching in current mailing | 24,25,29 |
filters | MailUp filters the recipient is matching in current mailing | 10,21 |
Endpoint specification (response)
You are free to design the response structure that better suits your needs when it comes to use the returned fields into a MailUp message. The required format is JSON. You can design a flat structure or a more complex one, built with arrays or nested fields.
Your services must return HTTP 200 in case of success and 4xx or 5xx in case of errors. When an error repeatedly occurs while querying services for a recipient, MailUp does not send the email to that recipient.
In some cases it may be useful to let the API decide if a specific recipient has to be excluded from mailing. Here the “DoNotSend” parameter comes in our rescue.
DoNotSend is a boolean parameter to be nested in a “Flow” object. Its default value is false, which means “send the message”. The use of HTTP errors like 4xx or 5xx to skip sending has a bad impact on overall performances, please use DoNotSend instead.
This is the right syntax to be used in the API response
"Flow": {
"DoNotSend": true,
}
Enable personalization at different levels
By default, the advanced personalization is set at message level. You have to turn it on and configure an endpoint for each message requiring it. In case of more available endpoints, you can decide which one has to be used for a specific message.
In some cases, you may find useful to have personalization enabled by default on all the messages of a MailUp list. By doing so, every message of the list has the personalization automatically enabled, at list level, on a predefined endpoint. You can use MailUp API or ask to MailUp support team if you want to set the personalization at list level.
Performance related best practices
Avoid enabling the personalization to messages that do not require it. Querying an external endpoint may introduce delays
Make sure your endpoint is robust, scalable and optimized to respond quickly
Build your own logging system. MailUp does not inform you when the API calls fail due to errors on the external system
Setup advanced personalization using MailUp REST API
Get list of endpoints
Description | Retrieve the list of personalization endpoints configurations |
---|---|
HTTP Method | GET |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints |
JSON request (example) | none |
JSON response (example) | |
Paging and filtering (example) | 5 items per page, get first page (count starts from zero)
Retrieve an orderd list of the endpoint(s) using the clause orderby="idEndpoint desc". Parameter names can be retreived from the response body. Please note that filter matching is case sensitive.
NB: no filtering querystring parameter provided! |
Get endpoint details by id
Description | Retrieve the personalization endpoint configuration details |
---|---|
HTTP Method | GET |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/{id_endpoint} |
JSON request (example) | none |
JSON response (example) | |
Paging and filtering (example) | none |
Create an endpoint
Description | Create a personalization endpoint configuration |
---|---|
HTTP Method | POST |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints |
JSON request (example) | |
JSON response (example) | |
Paging and filtering (example) | none |
Update an endpoint
Description | Update a personalization endpoint configuration |
---|---|
HTTP Method | PUT |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/{id_endpoint} |
JSON request (example) | |
JSON response (example) | |
Paging and filtering (example) | none |
Get endpoints of a list
Description | Get personalization endpoints related to a list |
---|---|
HTTP Method | GET |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/List/{id_list} |
JSON request (example) | none |
JSON response (example) | |
Paging and filtering (example) | none |
Set endpoint to list
Description | Set a personalization endpoint to a list |
---|---|
HTTP Method | POST |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/{id_endpoint}/List/{id_list} |
JSON request (example) | none |
JSON response (example) | none |
Paging and filtering (example) | none |
Remove endpoint from list
Description | Remove a personalization endpoint reference from a list |
---|---|
HTTP Method | DELETE |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/{id_endpoint}/List/{id_list} |
JSON request (example) | none |
JSON response (example) | none |
Paging and filtering (example) | none |
Delete an endpoint
Description | Remove a personalization endpoint configuration |
---|---|
HTTP Method | DELETE |
URL | https://services.mailup.com/API/v1.1/Rest/ConsoleService.svc/Console/Personalization/Endpoints/{id_endpoint} |
JSON request (example) | none |
JSON response (example) | none |
Paging and filtering (example) | none |