POST

WhatsappTemplates.Remove

Remove a WhatsApp template from the organization settings. Use this only when the template should no longer be available to users, campaigns, automations, or document sending.

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

Deletes the WhatsApp template row for this organization. Existing sent messages are not deleted.

Push Service

Pushes whatsapptemplates.deleted to the current user/owner so connected settings UIs can refresh their template list.

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
int12Template id from WhatsappTemplates.List.

Optional Parameters

NameTypeSampleWhat it gives
template_id
post
int12Alias of id.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

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

Endpoint

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

Sample Output

{
    "success": 1,
    "id": 12,
    "message": "Record removed successfully.",
    "automation_event": null,
    "socket_event": "whatsapptemplates.deleted"
}

JavaScript Example

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

Error Example

{
    "success": "0",
    "message": "Missing required parameter: id"
}