Skip to main content
POST
/
users
/
{user_id}
/
send
/
text
cURL
curl --request POST \
  --url https://app.fliqr.ai/api/users/{user_id}/send/text \
  --header 'Content-Type: application/json' \
  --header 'X-ACCESS-TOKEN: <api-key>' \
  --data '
{
  "text": "This is a text message",
  "channel": "messenger"
}
'
{
  "success": true
}

Authorizations

X-ACCESS-TOKEN
string
header
required

Path Parameters

user_id
integer
required

Body

application/json
text
string
channel
enum<string>
Available options:
messenger,
whatsapp,
sms,
webchat,
telegram,
instagram,
viber,
omnichannel

Response

200 - application/json

successful operation

success
boolean