Elora Logo

Home

Introduction

Errors

WhatsApp

Send Message

Send Template

Incoming Messages

Incoming Notifications

WhatsApp Notifications

The Elora messaging API sends a notification for previously sent messages. To receive these notifications, you need to set a status callback URL. From the dashboard select:Apps → App Settings → Default webhook status urlThese requests are sent as a POST request to the URL provided, as application/x-www-form-urlencoded.

Body Parameters

MessageIdstringRequired

A unique identifier for each message. This is the same id as the one in the response when a message is sent.

StatusstringRequired

The status of the message. Possible values are: 'sent', 'failed'

ErrorMessagestring

The error description. This is an optional field and is only sent when status is 'failed'.

Success Acknowledgement

Your endpoint must acknowledge the request by returning one of the following HTTP status codes:

200
OK
201
Created
202
Accepted
204
No Content

* Failure to return a standard success code will result in the message being flagged as Delivery Failed.

The callback URL must be secured via HTTPS.