wa_template_delete
Remove a WhatsApp template from the YCloud API by specifying its name and language, ensuring clean and organized template management.
Instructions
Delete a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"language"
],
"type": "object"
}