Controlled Templates

Get Controlled Template

get
Authorizations
Path parameters
controlledTemplateIdstringRequired
Responses
200

Success

application/json
Responseall of
get
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-10-13T13:33:22.819Z",
    "updatedAt": "2025-10-13T13:33:22.819Z",
    "assignedChildAccounts": [
      {
        "id": 1,
        "accountName": "text"
      }
    ]
  }
}

List Controlled Templates

get
Authorizations
Responses
200

Success

application/json
Responseall of
get
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": "2025-10-13T13:33:22.819Z",
        "updatedAt": "2025-10-13T13:33:22.819Z",
        "assignedChildAccounts": [
          {
            "id": 1,
            "accountName": "text"
          }
        ]
      }
    ],
    "page": 1,
    "pageSize": 1,
    "total": 1
  }
}

Last updated

Was this helpful?