Skip to main content

Introduction

IntelSend allows you to create reusable Templates for SMS, Email, and Voice. Templates save time by letting you define reusable content for your communications.


Why Use Templates?

  • ✅ Save time by reusing pre-built content
  • ✅ Maintain consistent branding across all messages
  • ✅ Support placeholders (like {{NAME}}) for personalization
  • ✅ Manage via API (create, get, delete)

Template Operations

With the IntelSend API, you can:

  • Create a template
  • Retrieve your templates
  • Delete a template
What You'll Need
  • An API Key to authenticate requests
  • Use the correct channel: sms, email, or voice

Create a Template

curl --location 'https://beta.intelsend.com/api/template/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--data '{
"templateName": "sms Template",
"body": "This is our sms Template , created by {{NAME}}",
"channel": "sms"
}'

Get Templates

Retrieve your existing templates:

curl --location 'https://beta.intelsend.com/api/template/' \
--header 'Authorization: Bearer <YOUR_API_KEY>'

Delete a Template

Delete a template by ID:

curl --location --request DELETE 'https://beta.intelsend.com/api/template/<TEMPLATE_ID>' \
--header 'Authorization: Bearer <YOUR_API_KEY>'

✅ You can now manage SMS, Email, and Voice templates programmatically.

Need help? Reach out to our support team at support@intelsend.com.