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 tester

Add a phone number as a tester for an RCS bot.

List all testers

Retrieve all tester numbers added for a selected bot or agent.

API examples

Add tester

Endpoint details

FieldValue
Endpoint URLhttps://apis.rmlconnect.net/rcs/management/v1/add_tester
MethodPOST
Content-Typeapplication/json
Authentication RequiredYes

Authentication

Pass a valid access token in the Authorization header.

Request headers

HeaderRequiredDescription
AuthorizationYesValid access token for authentication.
Content-TypeYesMust be application/json.

Request body parameters

FieldTypeDescription
phone_nostringPhone number to add as a tester.
bot_namestringRML 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

FieldValue
Endpoint URLhttps://apis.rmlconnect.net/rcs/management/v1/get_testers?bot_name=XXXXXXX
MethodGET
Content-Typeapplication/json
Authentication RequiredYes

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.



Did this page help you?