POST

WhatsappTemplates.Get

Get a single WhatsApp message template by id. Use this before editing a template or when a UI needs the full message and dynamic variable list.

Permissions

  • User must be logged in with a valid bearer token.
  • Returned or changed records are limited by the user permissions, team access, folder access, and account settings.

Action

  • Returns WhatsappTemplates information as JSON for the UI.

Push Service

No push is sent because this function only reads data or returns helper information.

Automation

No automation is run for this function.

Special Instructions

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

NameTypeSampleExplanation
id
post
int2516Template id. Alias: template_id.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/WhatsappTemplates.Get",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "2516"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/WhatsappTemplates.Get",
    "url_domain": "https:\/\/{domain}\/app\/WhatsappTemplates.Get"
}

Endpoint

POST /app/WhatsappTemplates.Get
POST https://{user}.bull36.com/app/WhatsappTemplates.Get
POST https://{domain}/app/WhatsappTemplates.Get

Sample Output

{
    "success": 1,
    "data": {
        "id": 2516,
        "template_id": 2516,
        "name": "Renewal message",
        "language": "he",
        "message": "Hi {{1}}",
        "dynamic_variables": [
            {
                "1": "name"
            }
        ]
    }
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ id: '2516' });
const res = await fetch('/app/WhatsappTemplates.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data.data);

Error Example

{
    "success": 0,
    "message": "Record was not found."
}