Skip to main content

🔐 Authentication

All requests to the IntelSend API must be authenticated using a Bearer Token in the request header.


📑 Required Headers

NameValueDescription
authorizationBearer v1_8pJc****SLLeC24Use the provided bearer token.
content-typeapplication/jsonSpecify JSON as the content type.

🛠️ Example Request

curl --location 'https://api.intelsend.com/send-msg' --header 'x-api-key: bUl1HuJu1x6VJo7kLw5qY4DmtJXVaQhf8IyaLPnF' --header 'Content-Type: application/json' --header 'Authorization: dedede' --data '{
"channel": "sms",
"uid": "12456",
"to": "3233933379",
"from": "9498671145",
"template-id": "688b634bf19b87633060398f",
"params": {
"MEMBER_NAME": "Deepak Kumar Yadav",
"MEMBERSHIP_LEVEL": "Gold",
}
}'

Tip

Always keep your Bearer Token secure. Do not share it publicly or expose it in client-side code.