Skip to main content
GET
/
api
/
user
/
sms-templates
Get all SMS templates for organization
curl --request GET \
  --url https://your-instance.example.com/api/user/sms-templates \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "64eea1110000000000000050",
    "name": "Intro - new lead",
    "template": "Hi {{firstName}}, thanks for reaching out — when is a good time to chat?",
    "type": "sms",
    "category": "introduction"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>
Available options:
sms,
campaign,
script,
automation

Response

Templates returned

_id
string
name
string
template
string
type
enum<string>
Available options:
sms,
campaign,
script,
automation
category
string
organizationId
string
userId
string
createdBy
object
updatedBy
string
createdAt
string<date-time>
updatedAt
string<date-time>
Example:
[
{
"_id": "64eea1110000000000000050",
"name": "Intro - new lead",
"template": "Hi {{firstName}}, thanks for reaching out — when is a good time to chat?",
"type": "sms",
"category": "introduction"
}
]