Controlled Templates
Get Controlled Template GET /controlled-templates/{controlledTemplateId}
List Controlled Templates GET /controlled-templates
List Unverified Toll-Free Controlled Templates GET /controlled-templates/global
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
controlledTemplateIdstringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get/controlled-templates/{controlledTemplateId}
GET /v3/controlled-templates/{controlledTemplateId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"accountId": 1,
"name": "text",
"message": "text",
"requiresLink": true,
"type": "dispensary",
"isMMS": true,
"isGlobal": true,
"url": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"assignedChildAccounts": [
{
"id": 1,
"accountName": "text"
}
]
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pagenumberOptional
pageSizenumberOptional
sortDirectionstring · enumOptionalPossible values:
querystringOptional
sortBystringOptional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get/controlled-templates
GET /v3/controlled-templates HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"id": 1,
"accountId": 1,
"name": "text",
"message": "text",
"requiresLink": true,
"type": "dispensary",
"isMMS": true,
"isGlobal": true,
"url": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"assignedChildAccounts": [
{
"id": 1,
"accountName": "text"
}
]
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get/controlled-templates/global
GET /v3/controlled-templates/global HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": [
{
"id": 1,
"accountId": 1,
"name": "text",
"message": "text",
"requiresLink": true,
"type": "dispensary",
"isMMS": true,
"isGlobal": true,
"url": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"assignedChildAccounts": [
{
"id": 1,
"accountName": "text"
}
]
}
]
}Last updated
Was this helpful?