Get your Webhook Url

Page describing how to verify the webhook you have setup is the correct one.

For consulting the webhook url that is set up for your bot you must use the following endpoint:

Get webhook URL

GET https://api.jelou.ai/v1/bots/:botId/webhook

Endpoint for getting your webhook url.

Path Parameters

NameTypeDescription

botId

string

Bot id

{
  "message": [
    {
      "webhookUrl": "<webhookUrl>"
    }
  ],
  "status": "success"
}

Request Example

curl --request GET \
  --url https://api.jelou.ai/v1/whatsapp/settings/<botId> \
  --header 'authorization: <clientId>:<clientSecret>'

Last updated