Skip to main content
POST
https://api.telepie.com/v1/
/
rcs
Rich Text
curl --request POST \
  --url https://api.telepie.com/v1/rcs \
  --header 'apikey: <api-key>'
Rich Text in RCS refers to messages that go beyond simple plain text by allowing formatting and media enhancements such as: Buttons with actions.

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
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 '{
    "number":"+91XXXXXXXXXX",
    "campaignName": "api-test",
    "botId": "EXPOSE",
    "type": "PRETRANS",
    "templateName""rich_text"
}'