Controlled Templates
Get Controlled Template GET /controlled-templates/{controlledTemplateId}
List Controlled Templates GET /controlled-templates
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
controlledTemplateIdstringRequired
Responses
200
Success
application/json
Responseall of
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": "2025-11-28T01:18:06.110Z",
"updatedAt": "2025-11-28T01:18:06.110Z",
"assignedChildAccounts": [
{
"id": 1,
"accountName": "text"
}
]
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
/controlled-templatesGET /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": "2025-11-28T01:18:06.110Z",
"updatedAt": "2025-11-28T01:18:06.110Z",
"assignedChildAccounts": [
{
"id": 1,
"accountName": "text"
}
]
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}Last updated
Was this helpful?