Serbia MO-Initiated Subscriptions

Serbia MO-Initiated Subscriptions

This document is designed to help you integrate MO-initiated subscriptions into your application. Before you begin, you will need to contact MessageCloud's support team via help@messagecloud.com to register your keyword.

Overview

The below diagram shows the expected flow of messages in the process.

  1. The customer sends a MO with [KEYWORD], where [KEYWORD] is your keyword.
  2. MessageCloud sends a double opt-in confirmation MT to the customer.
  3. The customer replies with DA
  4. MessageCloud activates the subscription for the customer and forwards the original message containing the keyword to the merchant.
  5. The merchant sends a free welcome message to the customer via MessageCloud, containing the price, length and interval of the subscription.
  6. The merchant sends chargeable MT messages to the customer via MessageCloud at the subscription intervals defined in the welcome message.
  7. MessageCloud notifies the merchant of charging success or failure with a delivery report.
  8. The customer can opt-out of the subscription by sending STOP.
  9. A notification of opt-out is sent to the merchant
  10. The merchant sends a free confirmation of opt-out message to the customer. If this is not sent within 30 seconds of receipt then MessageCloud will reply on your behalf.

Message Requirements

There are strict rules regarding the messages that will be sent to the customer during the subscription process.

Opt-in Confirmation Message

Please note that these messages are automatically sent to the customer by MessageCloud.

Before the activation of the subscription, the customer will be sent a free notification with the following information:

  • Price per message and content delivery frequency.
  • How to unsubscribe from the service.
  • If the service is wap push, a warning that GPRS is charged separately for data transfer.
  • If the service is for adults only (18+).
  • A customer care phone number and your company name.

For example, an opt-in confirmation message for non-adult subscription services might look like the following:

“[Service name]. Primaj jednom dnevno poruke po cijeni [price] RSD /SMS. Za potvrdu odgovori s DA. Tehnicki pruzalac usluge NTH 
Media doo Beograd.”

The message asks the customer to confirm their intent to opt-in by replying with a confirmation message " DA".

For more information regarding the content of messages that should be sent to the customer please see our Campaign Guidance - Serbia page.

Integration Details

The following section details how you can achieve the MO-initiated subscription model using Gateway . Due to the nature of Serbia's message flow, there are some extra parameters you should send to the API in certain circumstances.

Firstly, when customers opt into your subscription service, they will be sent a free message by MessageCloud asking them to confirm the opt-in. Only after the customer has confirmed this opt-in will the original message be forwarded to you as detailed in Receiving a Message. It is at this point you should send the customer a welcome message.

Sending a Welcome Message

This is only required for A1 and Yettel. Telekom customers will receive a welcome message directly from their network.

You should send a request to Gateway using the parameters listed on Sending a Message, but the following parameters should be set accordingly:

Variable Type Contents

reply

Integer

0

id

String

The format of the id string should be [message_id]|[your_callback_id], where [message_id] is the value of id you received in the opt-in MO and [your_callback_id] is the ID of the message in your platform.

If you do not wish to use [your_callback_id], you should set this to a random string.

value

Float

0.00

currency

String

RSD

command

String

W (where W stands for Welcome message)

You should receive a SUCCESS in the body of the HTTP response if everything was successful.

Sending a Content Message

Now that the welcome message is sent to the customer, you can send your subscription content messages according to your agreed subscription interval.

Variable Type Contents

reply

Integer

0

id

String

The format of the id string should be [message_id]|[your_callback_id], where [message_id] is the value of id you received in the opt-in MO and [your_callback_id] is the ID of the message in your platform.

If you do not wish to use [your_callback_id], you should set this to a random string.

value

Float

The value of your subscription content message.

currency

String

RSD

Sending a Goodbye Message

When the customer opts out of your subscription service, you will be sent an MO containing the word STOP according to the information provided on Stop Requests.

From the time you receive the MO, you will have 30 seconds in which to reply with your goodbye message otherwise MessageCloud will automatically send one on your behalf.

The following parameters should be sent to Gateway, in addition to the required parameters detailed on Sending a Message:

Variable Type Contents

reply

Integer

0

id

String

The format of the id string should be [message_id]|[your_callback_id], where [message_id] is the value of id you received in the opt-in MO and [your_callback_id] is the ID of the message in your platform.

If you do not wish to use [your_callback_id], you should set this to a random string.

value

Float

0.00

currency

String

RSD

command

String

G (where G stands for Goodbye message)

You will receive a SUCCESS in the body of the HTTP response if the request was successful.