How to enable Infobip Messages MMS on a merchant.
Infobip provides a robust MMS API for sending, receiving, and managing MMS 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 MMS messages can be delivered using Infobip Messages.
✅ Message Status MMS messages sent over Infobip Messages will have their status updated with delivery information.
Resources
Configuration
To configure Infobip MMS, 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 MMS 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.
Name | Type | Description | Rules |
---|---|---|---|
host | string | The host URL for making API requests to Capacity. This will be the base URL for all API interactions. Examples: foundation.textel.net. | |
apiKey | string | (required) This is the key used for API authentication with Capacity's services. You can obtain it by registering and creating an application within the Capacity developer portal. Examples: your_api_key_here . | |
line | string | (required) The phone line used for messaging. Examples: +1xx87xxx5555. | |
audience | string | (required) The audience for the service. Examples: user. | |
countries | array | A list of countries supported by the service. Examples: us,ca. |
Features
All messaging products support the following features
attributes.
Name | Values | Description |
---|---|---|
noAuthcode | true 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": "mms",
"provider": "infobipmessages",
"config": {
"host": "foundation.textel.net",
"apiKey": "your_api_key_here",
"line": "+1xx87xxx5555",
"audience": "user",
"countries": [
"us",
"ca"
]
}
}