Infobip Messages

How to enable Infobip Messages SMS on a merchant.

Infobip provides a robust SMS API for sending, receiving, and managing SMS messages across the globe. With failover capabilities and multiple integration options, Infobip ensures reliable delivery of messages, from user authentication to large-scale promotional campaigns.

Features

Messaging SMS messages can be delivered using Infobip Messages. ✅ Message Status SMS messages sent over Infobip Messages will have their status updated with delivery information.

Resources

Configuration

To configure Infobip SMS, log into the Infobip portal. You can manage your messaging settings, access API keys, and explore detailed developer documentation on how to integrate Infobip's SMS services. For further help, the support team is available via multiple contact options.

This table describes the required or possible attributes needed to configure a merchant product for this type.

NameTypeDescriptionRules
apiKeystringApi Key for authenticating requests to Infobip. Examples: your_infobip_api_key.
linestringThe phone line used for messaging. Examples: +1xx87xxx5555.
audiencestringThe audience for the service. Examples: user.
countriesarrayA list of countries supported by the service. Examples: us, ca.

Features

All messaging products support the following features attributes.

NameValuesDescription
noAuthcodetrue or false (default)All messages sent to customers using this product will never include an authorization response code.

Enabling this Product

Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.

{
  "line": "messaging",
  "product": "sms",
  "provider": "infobipmessages",
  "config": {
    "apiKey": "your_infobip_api_key",
    "line": "+1xx87xxx5555",
    "audience": "user",
    "countries": [
        "us",
        "ca"
    ]
  }
}