Capactiy

How to enable Capactiy MMS on a merchant.

Capacity MMS provides a platform for messaging that focuses on delivering robust MMS communication solutions. They emphasize on security, integrating advanced features for protecting messages and ensuring reliable delivery in diverse environments.

Features

Messaging MMS messages can be delivered using Capacity.

Resources

Configuration

To configure Capacity MMS, begin by logging into the user dashboard. Here, you can manage messaging settings and review security features. For detailed setup instructions and access to API keys, visit the developer documentation on Capacity's website. If further assistance is needed, consider reaching out to their support team via the support email.

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

NameTypeDescriptionRules
hoststringThe host URL for making API requests to Capacity. This will be the base URL for all API interactions. Examples: foundation.textel.net.
apiKeystring(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.
linestring(required) The phone line used for messaging. Examples: +1xx87xxx5555.
audiencestring(required) The 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": "mms",
  "provider": "capacity",
  "config": {
    "host": "foundation.textel.net",
    "apiKey": "your_api_key_here",
    "line": "+1xx87xxx5555",
    "audience": "user",
    "countries": [
        "us",
        "ca"
    ]
  }
}