Make a Tester
Use the Make a Tester APIs to add a tester number for an RCS bot and retrieve tester numbers already added for a bot.
Overview
This feature enables brands based in India to conduct preliminary sanity testing before launching a bot in regions like the US or Germany. If a local number is unavailable, an Indian number can be registered as a tester to validate the bot's functionality before the campaign.
Operations
Add a phone number as a tester for an RCS bot.
Retrieve all tester numbers added for a selected bot or agent.
API examples
Add tester
Endpoint details
| Field | Value |
|---|---|
| Endpoint URL | https://apis.rmlconnect.net/rcs/management/v1/add_tester |
| Method | POST |
| Content-Type | application/json |
| Authentication Required | Yes |
Authentication
Pass a valid access token in the Authorization header.
Request headers
| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Valid access token for authentication. |
| Content-Type | Yes | Must be application/json. |
Request body parameters
| Field | Type | Description |
|---|---|---|
| phone_no | string | Phone number to add as a tester. |
| bot_name | string | RML agent or bot name. |
Request body
{
"phone_no": "{phone_number}",
"bot_name": "{RML_agent_name}"
}Response
{
"response": "Submitted, Tester Invite Sent",
"status": "status"
}Error response
No error response example is provided for this operation.
List all testers
Use this operation to retrieve all tester numbers added for the selected bot or agent.
Endpoint details
| Field | Value |
|---|---|
| Endpoint URL | https://apis.rmlconnect.net/rcs/management/v1/get_testers?bot_name=XXXXXXX |
| Method | GET |
| Content-Type | application/json |
| Authentication Required | Yes |
Authentication
Pass a valid access token in the Authorization header.
Response: 200 OK
{
"data": [
{
"botname": "XXXXXXX",
"id": 10330,
"phonenumber": "{phone}",
"service_provider": [
"VODAFONE_INDIA"
],
"status": "success",
"timestamp": "Fri,16May202505:14:23GMT"
},
{
"botname": "XXXXXXX",
"id": 9505,
"phonenumber": "{phone}",
"service_provider": [
"VODAFONE_INDIA"
],
"status": "success",
"timestamp": "Mon,17Feb202503:35:35GMT"
},
{
"botname": "XXXXXXX",
"id": 7393,
"phonenumber": "{phone}",
"service_provider": [
"VODAFONE_INDIA"
],
"status": "success",
"timestamp": "Mon,02Dec202405:32:06GMT"
},
{
"botname": "XXXXXXX",
"id": 7327,
"phonenumber": "{phone}",
"service_provider": [
"VODAFONE_INDIA"
],
"status": "success",
"timestamp": "Mon,02Dec202405:32:06GMT"
}
],
"total": 50
}Error response
No error response example is provided for this operation.
Updated 11 days ago