🔐 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 -X POST "https://intelsend.com/api/v1/send/single_email" \
-H "authorization: Bearer v1_8pJc****SLLeC24" \
-H "content-type: application/json" \
-d '{
"from": "info@intelsend.com",
"to": "abc@gmail.com",
}'
Tip
Always keep your Bearer Token secure. Do not share it publicly or expose it in client-side code.