Creating / updating a user profile
Retrieving all profiles by email
Confirmation of user profile receiving marketing materials
User profile subscription to a single category
User profile unsubscribing from a single category
User profile unsubscribing using a secure link
Changing user profile categories
Changing user profile categories using a secure link
Retrieving user profile categories
Retrieving user profile categories using a secure link
User profile removal and inclusion in GDPR quarantine
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
The API functions using the HTTP protocol.
Request format: standard HTTP GET or POST, application/x-www-form-urlencoded
Response format: JSON.
Server-to-Server requests
The Server-to-Server API verifies the client’s authorization and API address.
The login and secret are passed using Basic HTTP Authorization in the Authorization header
Authorization: Basic base64('login:secret')
The login and secret, and the list of allowed IP addresses, can be changed in the project settings
Endpoint - https://mailer.mail.ru/
swagger is available for api/v2
ping https://mailer.mail.ru/api/watchman/ping/
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/mailer/send/
Sends an email to the specified address. Cannot be used for bulk mailings!
Parameter | Type | Description |
---|---|---|
The user's email address | ||
uid | str | The user’s UID. Required for MY.GAMES projects |
letter | int | Email template ID |
retry | int | Retry sending in case of SMTP server unavailability. 1 by default |
send_id | string | Any unique value within the project. Emails with the same send_id will not be resent. The send_id is stored in the mailer for at least one day. Optional |
language | string | Email template language Optional |
resolve.xxx | string | Additional parameters for profile filtering. See below for available parameters |
pin.xxx | string | Additional parameters for the template. pin.xxx will be available in the template as {{ xxx }}. DO NOT pin index fields pin.uid, pin.email, pin.phone, pin.wp_token. Use any other fields such as pin.promo_email instead |
header.xxx | string | Additional email header parameters. The only headers allowed currently are 'Reply-To', 'Cc', and 'Bcc'. To add new ones, please contact Andrei Moiseev. |
attach.xxx | url | The attachment file that can be used in the template. Such as: <img src="cid:xxx">. The file will be downloaded from the specified URL and will have xxx as its content ID. The content-type is taken from the server response header. If the attachment is a text file containing non-ASCII letters, it should be encoded in utf-8, as in content_type='message/rfc822; charset=utf-8'. The timeout for a single request is 1 second. The file will be requested at the time of the API call. Currently the cumulative limit for attachments is 4. |
attachment.xxx | url | Attachment file. The file will be downloaded from the specified URL and will have xxx as its name. The content-type is taken from the server response header. If the attachment is a text file containing non-ASCII letters, it should be encoded in utf-8, as in content_type='message/rfc822; charset=utf-8'. The timeout for a single request is 1 second. The file will be requested at the time of the API call. Currently the cumulative limit for attachments is 4. |
{
"sent": 1,
"retry": 0,
"status": "ok"
}
{
"sent": 0,
"retry": 1,
"status": "ok"
}
{
"args_errors": {
"language": [
"Bad language. Received: 'en'. Available: ['ru']"
]
},
"status": "fail",
"code": 3000,
"msg": "incorrect arguments"
}
{
"status": "fail",
"msg": "send in progress",
"code": 3017,
"current_status": "W"
}
{
"status": "fail",
"msg": "already sent",
"code": 3016,
"sent_at": "1548920365"
}
curl --request POST 'https://mailer.mail.ru/api/mailer/send/' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic ***' \
--data-urlencode 'email=user@mail.ru' \
--data-urlencode 'letter=1234' \
--data-urlencode 'pin.xxx=value'
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/sms/send/
Parameter | Type | Description |
---|---|---|
phone | phone | Phone number |
message | int | SMS message ID for sending |
pin.xxx | string | Additional parameters for the template. pin.xxx will be available in the template as {{ xxx }} |
{
"sent": 1,
"status": "ok",
}
{
"sent": 0,
"status": "fail",
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
Users can be identified using one of three fields: * uid - User ID within the project * email - Their email address * phone - Their phone number, if present
At least one of these parameters must be included in profile-related calls.
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/update/
Creates a new user or updates an existing one based on the provided fields.
Parameters beginning with pin should be used for passing all non-index fields.
All fields must be declared in advance via project settings in the web interface. All undeclared fields will be ignored.
Updating profile fields may trigger automated mailings.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
pin.xxx | Project-specific custom profile fields | |
unpin.xxx | Clears selected profile fields. The value provided with this field will be ignored. |
{
"status": "ok"
}
Internal name | Name | Data type | API-based update capability |
---|---|---|---|
subscribed_at | Subscription date (single opt-in) | Date and time | No |
confirmed_at | Email confirmation date (double opt-in) | Date and time | No |
unsubscribed_at | Subscription cancellation date | Date and time | No |
subscribed_categories | Subscription categories | JSON | No |
spam_reported_at | Date added to spam quarantine | Date and time | No |
bounce_error | Last bounce error | String | No |
bounce_at | Date of the last bounce error | Date and time | No |
blacklisted_at | Date added to the blacklist | Date and time | No |
lang | The user’s language | String | Yes |
gender | Gender | String | Yes |
birthday | Birth date | Date and time | Yes |
email_verified | Email confirmed | Flag | Yes |
gcnotif_unsubscribe_at | Notification unsubscribe date | Date and time | No |
uid | The user’s ID | String | Yes |
String | Yes | ||
phone | Phone number | String | Yes |
wp_token | WebPush token | String | Yes |
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
GET /api/profiles/get/
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional |
{
"status": "ok",
"profile": {
"uid": 24234,
"email": "user@mail.ru",
"level": 33,
"something_else": "data"
}
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
GET /api/profiles/get_all/
Parameter | Type | Description |
---|---|---|
User email. |
{
"status": "ok",
"profiles": [{
"uid": 24234,
"email": "user@mail.ru",
"level": 33,
"something_else": "data"
},
{
"uid": 264563,
"email": "user@mail.ru",
"level": 3,
"something_else": "other_data"
}]
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/verify/
Marks a user as verified
It is preferable to use the micro format (https://mailer.mail.ru/docs/view/templates/).
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional |
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/confirm/
Flags the user as opted-in to receive marketing newsletters. It is preferable to use the micro format (https://mailer.mail.ru/docs/view/templates/).
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
not_subscribe | bool | Not to subscribe if subscription is absent |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/subscribe/
POST /api/profiles/subscribe/{{token}}/- using secure link
Flags the user as subscribed to all project categories. The list of categories can be modified via the project settings in the Mailer web interface. The project MUST NOT subscribe the user to mailings without their explicit consent. EULAs and other legal documents do not count as explicit consent. The project MUST NOT subscribe the user to all categories if they have only subscribed to some. The project bears responsibility for such mailings.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
lang | string | The language to be set in the profile. Format: ru,en,fr or en_US,ru_RU,fr_FR. Optional |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
{
"status": "ok",
"profile_categories": [1, 2, 3, 4, 5],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/subscribe_category/
Adds only the specified category to the subscriptions
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
category | int | Subscribing category number |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
{
"status": "ok"
"profile_categories": [1, 2, 5],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/unsubscribe/
Marks the user as unsubscribed from all project categories. Unsubscribed users will not receive emails from the project (unless explicitly overridden).
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
{
"status": "ok"
"profile_categories": [],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/unsubscribe_category/
Removes only the specified category from the subscriptions
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
category | int | Unsubscribing category number |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
{
"status": "ok"
"profile_categories": [1, 2],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/unsubscribe/{{token}}/
Marks the user as unsubscribed from all project categories. Unsubscribed users will not receive emails from the project (unless explicitly overridden).
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
{
"status": "ok"
"profile_categories": [],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/set_subscriptions/
Sets a new list of categories the user is subscribed to. If the list of categories is empty, it works the same as unsubscribing the user.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
categories | []int | The list of category IDs to which the user is subscribed |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
Example: categories=1&categories=4&categories=6
{
"status": "ok",
"profile_categories": [1, 4, 6],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/set_link_subscriptions/{{token}}/
Sets a new list of categories the user is subscribed to. If the list of categories is empty, it works the same as unsubscribing the user.
Parameter | Type | Description |
---|---|---|
profile_categories | []int | The list of category IDs to which the user is subscribed |
ip | ip | The user's IP address for GDPR logging in Server-to-Server requests. Optional |
agent | string | The user's User-Agent for GDPR logging in Server-to-Server requests. Optional |
Example: profile_categories=1&profile_categories=4&profile_categories=6
{
"status": "ok",
"profile_categories": [1, 4, 6],
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
GET /api/profiles/get_subscriptions/
Returns a list of categories user is subscribed to. Also returns information about all possible project categories.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional | ||
lang | string | Desired localization of category names. Optional For example: de_DE |
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
GET /api/profiles/get_link_subscriptions/{{token}}/
Returns a list of categories user is subscribed to. Also returns information about all possible project categories.
{
"status": "ok",
"profile_categories": [1, 3],
"project": {
"name": "The Project",
"logo": "https://mailer.mail.ru/path/to/logo.png",
"categories": [
{
"id": 1,
"title": "Security Notifications",
"description": "Important messages about your account",
},
{
"id": 2,
"title": "News and promos",
"description": "Information about new products",
},
{
"id": 3,
"title": "Messages from other users",
"description": "Notifications about personal messages from other users",
},
]
},
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/void/
Deletes the user from the mailer and adds them to the GDPR quarantine. The user can no longer be added to the mailer.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional |
If the project has the is_internal flag set, an additional parameter ext_ids can be passed to remove a user from multiple projects at once.
Parameter | Type | Description |
---|---|---|
ext_ids | []str | Project’s external id Optional |
Example: email=test@mail.ru&ext_ids=project1.my.com&ext_ids=project2.my.com
{
"status": "ok"
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
POST /api/profiles/delete/
Do not delete users unless ABSOLUTELY necessary!
Removes a user from the mailer. Deletes all history and quarantines.
Parameter | Type | Description |
---|---|---|
uid | string | uid - user ID in the project․ Optional |
phone | phone | User phone number. Optional |
User email. Optional |
Example: email=test@mail.ru
{
"status": "ok"
}
{
"status": "fail",
"code": 3008,
"msg": "no such profile"
}
GET /api/mailer/send_verify/
Parameter | Type | Description |
---|---|---|
User email | ||
ext_id | int/str | Project ID |
{
"status": "ok",
"letter_id": 1234
}
..............................................................................................................................................................................................................................................................................................
..............................................................................................................................................................................................................................................................................................
Error code | Description |
---|---|
3000 | Incorrect parameters |
3001 | Access denied: no Authorization header |
3001 | Access denied: incorrect login or secret |
3001 | Access denied: IP not in the allowed list |
3002 | Email, SMS, or GC notification not found. |
3003 | Too many addresses |
3004 | Project not found |
3005 | The object is inaccessible |
3006 | Failed to send message |
3007 | Incorrect profile fields, such as a wrong date for date fields |
3008 | Profile not found |
3013 | Unsupported API method |
3014 | The call frequency for this operation has been exceeded |
3015 | The message was not sent: the user did not pass the filters |
3016 | The message was not sent: a message with the same send_id was already dispatched |
3017 | The message was not sent: a message with the same send_id is being dispatched |
3018 | Incorrect JWT token |
3019 | The template for the email/notification/SMS/push is archived |
3020 | The project's sending policy does not support this method |