twilio icon indicating copy to clipboard operation
twilio copied to clipboard

WhatsApp templates won't work anymore soon

Open LufoX11 opened this issue 7 months ago • 1 comments
trafficstars

Hi!

Any plans to update the plugin to support the new schema? Twilio's blog article

Basically, WhatsApp templates were deprecated and won't work anymore in the near future. You'll need to user contentSid and contentVariables to send the data:


    $sid    = "AC15993a6780...";
    $token  = "[AuthToken]";
    $twilio = new Client($sid, $token);

    $message = $twilio->messages
      ->create("whatsapp:+549114097...", // to
        array(
          "from" => "whatsapp:+14155...",
          "contentSid" => "HXb5b62575e6e4ff6129ad7c8...",
          "contentVariables" => "{"1":"12/1","2":"3pm"}",
          "body" => "Your Message"
        )
      );

LufoX11 avatar Apr 11 '25 03:04 LufoX11