VVP USA

How to enable VVP USA SMS on a merchant.

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

Features

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

Resources

Configuration

To configure VVP USA SMS, log into the VVP USA portal. You can manage your messaging settings, access API keys, and explore detailed developer documentation on how to integrate VVP USA'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
sysIdstringsysId for authenticating requests to VVP USA. Examples: your_vvpusa_sys_id.
authTokenstringauthToken for authenticating requests to VVP USA. Examples: your_vvpusa_auth_token.
fromstringThe phone line used for sms messaging as sender. 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": "vvpusa",
  "config": {
    "sysId": "your_vvpusa_sys_id",
    "authToken": "your_vvpusa_auth_token",
    "from": "+1xx87xxx5555",
    "audience": "user",
    "countries": [
        "us",
        "ca"
    ]
  }
}