These are the sample payloads for Outbound Notification you will receive on your webhook
{
"statuses": [
{
"id": "WHATSAPP_MESSAGE_ID",
"status": "sent",
"timestamp": "TIMESTAMP",
"recipient_id": "CUSTOMER_PHONE_NUMBER",
"conversation": {
"id": "CONVERSATION_ID",
"expiration_timestamp": "CONVERSATION_EXPIRATION_TIMESTAMP",
"origin": {
"type": "user_initiated"
}
},
"pricing": {
"billable": true,
"pricing_model": "CBP",
"category": "user_initiated"
}
}
]
}
{
"statuses": [
{
"id": "wamid.ID",
"recipient_id": "PHONE_NUMBER",
"status": "delivered",
"timestamp": "TIMESTAMP",
"conversation": {
"id": "CONVERSATION_ID",
"expiration_timestamp": TIMESTAMP,
"origin": {
"type": "user_initiated"
}
},
"pricing": {
"pricing_model": "CBP",
"billable": true,
"category": "user_initiated"
}
}
]
}
{
"statuses": [
{
"id": "WHATSAPP_MESSAGE_ID",
"status": "read",
"timestamp": "TIMESTAMP",
"recipient_id": "CUSTOMER_PHONE_NUMBER"
}
]
}
{
"statuses": [
{
"id": "wamid.ID",
"status": "failed",
"timestamp": TIMESTAMP,
"recipient_id": PHONE_NUMBER,
"errors": [
{
"code": 131014,
"title": "Request for url https://URL.jpg failed with error: 404 (Not Found)"
}
]
}
]
}