Skip to main content
POST
/
send
cURL
curl -X POST https://api.insightssystem.com/api:-GWQv5aM/send \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-d '{
  "phone": "+1234567890",
  "text": "Hello, this is a test message from Notifier!",
  "attachment": "https://example.com/image.jpg",
  "filename": "image.jpg"
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Your Notifier API Token

Body

application/json
phone
string
required

The recipient's phone number in E.164 format (e.g., +1234567890)

text
string
required

The message content you want to send

attachment
string

A public URL to an attachment (e.g., image, PDF, video)

filename
string

The name of the attachment file

Response

Message sent successfully

message
string

A message describing the result of the operation

I