TextRequest

How to enable TextRequest SMS on a merchant.

TextRequest SMS service allows you to send and receive SMS messages using the TextRequest API platform.

Features

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

Resources

Configuration

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

NameTypeDescriptionRules
apiKeystringThis is the key used for API authentication with TextRequest's services. You can obtain it by registering and creating an application within the TextRequest developer portal. Examples: your_api_key_here.
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": "textrequest",
  "config": {
    "apiKey": "your_api_key_here",
    "line": "+1xx87xxx5555",
    "audience": "user",
    "countries": [
        "us",
        "ca"
    ]
  }
}