Home > Software engineering >  WhatsApp Business API - Edit Template
WhatsApp Business API - Edit Template

Time:08-16

I'm trying to send a POST request to edit a template message of WhatsApp:

POST /{whatsapp_template_id}   
{
  "name": "my_template",
  "language": "en_US",
  "category": "transactional",
  "components": [
    {
      "type": "BODY",
      "text": "whatsapp buddy?"
    }
  ]
}

Receiving (#3) Application does not have the capability to make this API call.

CodePudding user response:

Currently, there is no edit template API, as per the documentation it will Available from September 7, 2022.

  • Related