Whatsapp Messaging Statuses

Routee provides a detailed status for every Whatsapp Message sent through the Routee Whatsapp API. Below there is a table with the available Whatsapp Statuses and the description.

Whatsapp Message Statuses:

Whatsapp Message StatusDescription
MoMessageMessage received by us and relayed to your system.
MessageStatus::acceptedNotifications for accepted messages.
MessageStatus::deliveredNotifications for delivered messages.
MessageStatus::seenNotifications for seen messages.
MessageStatus::failedNotifications for failed messages.
MessageStatus::channelFailedNotifications for channel failures.
MessageStatus::deletedNotifications for deleted messages.
MessageStatus::unknownNotifications for unknown status.

Setup your webhooks and start receiving the events above for better control and automated responses.

Examples payloads are:

{
    "messageId": "a1d48024-e1c3-42a9-8232-16b19ce765b6",
    "channel": "whatsapp",
    "event": "MessageStatus::seen",
    "deliveryChannel": "whatsapp",
    "status": "seen",
    "timestamp": "2021-01-14T07:40:55.050Z",
    "details": {
        "from": "301234567891"
    },
    "from": " 301234567891 "
}
{
    "messageId": "a1d48024-e1c3-42a9-8232-16b19ce765b6",
    "channel": "whatsapp",
    "event": "MessageStatus::delivered",
    "deliveryChannel": "whatsapp",
    "status": "delivered",
    "timestamp": "2021-01-14T07:40:55Z",
    "details": {
        "from": " 301234567891 "
    },
    "from": " 301234567891 "
}
{
    "messageId": "a1d48024-e1c3-42a9-8232-16b19ce765b6",
    "channel": "whatsapp",
    "event": "MessageStatus::accepted",
    "deliveryChannel": "whatsapp",
    "status": "accepted",
    "timestamp": "2021-01-14T07:40:53.682474Z"
}