🔐 Authentication
All requests to the IntelSend API must be authenticated using a Bearer Token in the request header.
📑 Required Headers
| Name | Value | Description |
|---|---|---|
| authorization | Bearer v1_8pJc****SLLeC24 | Use the provided bearer token. |
| content-type | application/json | Specify 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": "voice",
"uid": "12456",
"to": "9999999999",
"from": "9999999999",
"template-id": "688b634bf19b87633060398f",
"params": {
"Name": "Deepak Kumar Yadav",
}
}'
Tip
Always keep your Bearer Token secure. Do not share it publicly or expose it in client-side code.