For Agents
Manage SMS marketing subscriptions on Text2VIP - create, update, list, search, and remove subscribers under a user account.
Use for: Add a new SMS subscriber to my Text2VIP account, List all subscribers on the loyalty list, Find subscribers matching a keyword search, Update the profile of an existing subscriber
Not supported: Does not handle email marketing, voice campaigns, or message delivery itself - use for managing SMS marketing subscriptions on Text2VIP only.
Text2VIP is an SMS marketing platform that drives customer engagement by managing keyword-based subscriptions, campaign sends, and distribution lists. The REST surface lets agents create, list, retrieve, update, delete, and search subscriptions for a given account, with all operations scoped under a `{user_name}` path segment so multi-account orchestration is straightforward. It is suited to retailers, restaurants, and service businesses running SMS-loyalty programs that capture opt-ins via a keyword or short code.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Text2VIP API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmessagingchannel.com%2Ftext2vip" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmessagingchannel.com%2Ftext2vip" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Text2VIP API.
Create a new SMS marketing subscription when a customer opts in via a keyword
List active subscriptions for a Text2VIP user account to drive a campaign send
Look up a single subscription by ID to confirm opt-in status before messaging
Update a subscription's profile details when the customer's preferences change
Search subscriptions by attribute to build segmented audiences for targeted campaigns
Remove a subscription when the customer opts out to stay compliant with SMS regulations
Patterns agents use Text2VIP API for, with concrete tasks.
★ Keyword Opt-In Capture
When a customer texts a keyword to a Text2VIP short code, the platform records the opt-in. Agents can mirror this in their own onboarding flow by calling PUT /{user_name}/subscription to register a subscriber programmatically with profile data captured from a web form or POS system. The subscription becomes immediately addressable from later campaign sends.
Call PUT /{user_name}/subscription with the customer's phone number and profile fields when they submit the loyalty signup form
Audience Segmentation for Campaigns
Search the distribution list to build a segmented audience before a campaign send - for example, customers with a particular VIP tier or a specific home store. The search endpoint returns matching subscriptions which the agent can then iterate over for targeted messaging. This keeps blast volumes lower and engagement higher.
GET /{user_name}/subscription/search with attribute filters to build a VIP-tier audience before triggering an SMS campaign
Compliant Opt-Out Handling
When a customer replies STOP or otherwise asks to be removed, the agent calls DELETE /{user_name}/subscription/{subscription_id} to remove the subscription record. This keeps the distribution list compliant with SMS marketing regulations and prevents continued sends. Pairing this with a regular search for inactive subscribers helps keep the list clean.
DELETE /{user_name}/subscription/{subscription_id} when an opt-out reply is received and confirm the record is gone with a follow-up GET
AI Agent Integration via Jentic
An AI agent uses Jentic to discover Text2VIP by intent search ('add an SMS subscriber'). Jentic returns the subscription operations with their input schemas, so the agent can register, update, or remove a subscriber in a single load-and-execute step. The Text2VIP API key is held in your Jentic One instance and never enters the agent's prompt.
Use Jentic to search 'add an SMS subscriber', load the PUT /{user_name}/subscription schema, and execute it to register a new opt-in
6 endpoints — text2vip is an sms marketing platform that drives customer engagement by managing keyword-based subscriptions, campaign sends, and distribution lists.
METHOD
PATH
DESCRIPTION
/{user_name}/subscription
Create a subscription
/{user_name}/subscription
List subscriptions
/{user_name}/subscription/{subscription_id}
Get a subscription by ID
/{user_name}/subscription/{subscription_id}
Update a subscription
/{user_name}/subscription/{subscription_id}
Delete a subscription
/{user_name}/subscription/search
Search subscriptions
/{user_name}/subscription
Create a subscription
/{user_name}/subscription
List subscriptions
/{user_name}/subscription/{subscription_id}
Get a subscription by ID
/{user_name}/subscription/{subscription_id}
Update a subscription
/{user_name}/subscription/{subscription_id}
Delete a subscription
/{user_name}/subscription/search
Search subscriptions
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Text2VIP by hand means reading its X-Apikey header scheme, threading the user name through every subscription path, and handling errors yourself. Through Jentic you install once, import Text2VIP from the API Directory, store the API key once, and your agent calls it.
Permission scoping
Text2VIP puts the account and subscription in the URL path (/{user_name}/subscription/{subscription_id}), so a rule can pin your agent to one user's subscriptions and nothing else. You choose the operations it may call, so removing a subscriber with a DELETE is not included unless you add it.
Credential isolation
Your Text2VIP API key is stored once, encrypted, by your own Jentic One instance and injected into the X-Apikey header at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'add an SMS subscriber' or 'find a VIP subscription', and Jentic returns the matching Text2VIP operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Text2VIP API through Jentic.
What authentication does the Text2VIP API use?
An API key in the `X-Apikey` request header, generated from the API Settings page in the Text2VIP dashboard. Through Jentic the key is stored in your Jentic One instance and injected into the header at request time, so it never enters the agent's prompt.
How do I add a new SMS subscriber?
Call PUT /{user_name}/subscription with the subscriber's phone number and profile fields. The `{user_name}` segment is the Text2VIP account that owns the distribution list.
Can I segment subscribers by attribute before a campaign?
Yes. Use GET /{user_name}/subscription/search with attribute filters to build a targeted audience, then iterate over the returned subscription records when triggering the campaign send.
How do I handle an opt-out?
Call DELETE /{user_name}/subscription/{subscription_id} when the customer replies STOP or requests removal. Confirm with GET /{user_name}/subscription/{subscription_id} that the record is no longer present.
How do I create a subscription through Jentic?
Search Jentic for `add an SMS subscriber`, load the PUT /{user_name}/subscription operation, and execute it with the customer phone and profile fields. Jentic returns the structured subscription response.
Are there published rate limits?
The OpenAPI spec does not declare quantitative rate limits. Check the Text2VIP dashboard or contact MessagingChannel support for the limits attached to your plan before bulk imports.
GET STARTED