Call back URI

Understanding Webhooks

Whenever a trigger event occurs, Easysocial sees the event and sends a notification to a Webhook URL you have previously specified. You can get the following notification:

  • Template status: This alert lets you know when the status of a template message has changed —for example, the template has been approved or rejected.

Webhook URL

A Webhook URL is an endpoint on your server where EasySocial sends real-time notifications about specific events. It acts as a bridge between EasySocial and your application, enabling seamless communication and automation.

POST

https://api.easysocial.in/partners//subscribed_business

Example request

curl --location '/subscribed_apps' \
--header 'partner-token;' \
--header 'auth-token;' \
--data '{
    "callback_uri": "https://b0eb-117-198-76-29.ngrok-free.app/partners/verification",
    "verify_token": "123456"
}'

Example response

{
  "status": 201,
  "success": true,
  "message": "Callback URI successfully applied"
}