How to enable Sinch MMS on a merchant.
Sinch provides everything you need to message, email, or call your customers at scale. From user verification to omnichannel campaigns, our APIs and applications have you covered.
Features
✅ Messaging MMS messages can be delivered using Sinch.
✅ Message Status MMS messages sent over Sinch will have their status updated with delivery information.
Resources
Configuration
To configure Sinch MMS, start by logging into the Sinch dashboard. From there, you can manage your messaging settings and review security options. For detailed setup instructions and access to API keys, refer to the developer documentation available on Sinch's website. If you need further assistance, you can contact their support team via the provided support email.
This table describes the required or possible attributes needed to configure a merchant product for this type.
Name | Type | Description | Rules |
---|---|---|---|
service_plan_id | string | This is the service_plan_id used for API authentication with Sinch's services. You can obtain it by registering and creating an application within the Sinch developer portal. Examples: your_service_plan_id_here. | |
token | string | Find your API token for each service plan in the Sinch Customer Dashboard. First under APIs, then REST configuration. The token is sent in the Authorization header of each endpoint preceded by Bearer. It's required for all requests made to the Sinch SMS API. Examples: your_token_here. | |
line | string | The phone line used for messaging. Examples: +1xx87xxx5555. | |
audience | string | 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": "sinch",
"config": {
"service_plan_id": "your_service_plan_id_here",
"token": "your_token_here",
"line": "+1xx87xxx5555",
"audience": "user",
"countries": [
"us",
"ca"
]
}
}