Skip to main content
POST
https://api.telepie.com/v1/
/
rcs
Standalone Image Changeable
curl --request POST \
  --url https://api.telepie.com/v1/rcs \
  --header 'apikey: <api-key>'

Request Body Parameters

number
string
required
Recipient’s phone number (must be RCS-enabled and in international format) For example, if the number is in the India, the format would be: +91XXXXXXXXXX
templateName
string
required
Name of the message template to be used
botId
string
required
Identifier of the RCS bot used to send the message
type
string
required
Type of message. Typically “PRETRANS” or another predefined type
content
array
required
To build a message content object for RCS, typically include various fields such as param, fileUrl( images, video, and other media).
fileUrl
string
required
Publicly accessible URL to the media file you want to send
campaignName
string
The RCS campaign name refers to the specific name or title given to a campaign conducted through RCS
curl -G - /v1/rcs\
-H 'apikey':'string'
-H "Content-Type: application/json" \
-d '{
        "campaignName": "rcs-api-sms",
        "botId": "EXPOSE",
        "type": "PRETRANS",
        "number": "+91XXXXXXXXXX",
        "templateName": "standalone",
        "content": [
            {
            "fileUrl": "https://omni-whtaspp-media.s3.ap-south-1.amazonaws.com/uploads/1740046830337.jpg"
            }
        ]
    }