Hi, does anyone know what's the difference between using WhatsApp Business Connected System (plug-in) and Connected System with the base URL https://graph.facebook.com/
Discussion posts and replies are publicly visible
Hi romiev8844 ,
While using the base url from the documentation of Meta, it is difficult to implement Webhooks in Appian, since Whatapp business API works well with Webhooks whereas Whatsapp Business Connected System Plugin has already resolved this issue.
This is Appian’s pre-built connected system template for WhatsApp Business.
It abstracts away a lot of the complexity — like authentication setup, request formatting, and API endpoint wiring.
You just configure your credentials and fill in a few fields — no need to manually build REST calls.
Ideal for quick implementation and low-code convenience.
https://graph.facebook.com/
This is a manual REST integration where you define every aspect yourself.
You need to handle:
Auth token management
Custom headers and request payloads
Endpoint paths like /v18.0/{{phone_number_id}}/messages
/v18.0/{{phone_number_id}}/messages
Useful when you need full control or advanced custom behavior that the plug-in doesn’t expose.
So in short:
Use the plug-in for ease and speed.
Use the custom REST setup if you want flexibility
naveenkumar11800 How are you planning to implement the webhooks used by Whatsapp Business API in Appian?