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

Authorizations

X-ACCESS-TOKEN
string
header
required

Path Parameters

user_id
integer
required

Body

application/json
url
string
type
enum<string>
Available options:
file,
image,
audio,
video
channel
enum<string>
Available options:
messenger,
sms,
whatsapp,
googleBM,
telegram,
instagram,
viber,
omnichannel

Response

200 - application/json

successful operation

success
boolean