POST

WhatsappTemplates.Delete

Alias of WhatsappTemplates.Remove. Remove a WhatsApp template from the organization settings.

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.Delete",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "12"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/WhatsappTemplates.Delete",
    "url_domain": "https:\/\/{domain}\/app\/WhatsappTemplates.Delete"
}

Endpoint

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

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.Delete', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);

Error Example

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