# Delivery Message

### Webhook-Delivery Notification

This enables developers receive the events as and when it happens.

Delivery Notification send the delivery notification such as (Sent, Delivered, Read)

The delivery notification will be sent in batch. There is no fixed batch size.

Method: POST

Parameters:

| Parameter      | Description                                                                                                          | Data Type |
| -------------- | -------------------------------------------------------------------------------------------------------------------- | --------- |
| ncmessage\_id  | ncmessage\_id is unique id which is given when you send any message via PUSH api.                                    | String    |
| recipient      | The user mobile number                                                                                               | Number    |
| status         | <p></p><p>The status of message. There will be 4 status.</p><ul><li>Read </li><li>Delivered </li><li>Sent </li></ul> | String    |
| status\_remark | If the message are failed then failed remark will be given                                                           | String    |
| received\_at   | The time of status                                                                                                   | date-time |
| source         | The source will be return what you have passed at time of PUSH API.                                                  | String    |

### Webhook Payload

```
{ 
"delivery_status":[ 
        { 
                "ncmessage_id":"fa9d647a-c8d7-423e-bd27-7d2ca2875d12", 
                "recipient":"919999999999", 
                "status":"read", 
                "status_remark":"", 
                "received_at":"2019-05-16 15:36:58", 
                "source":"fa9d647a-c8d7-423e-bd27-7d2ca2875dc1", 
        } 
        ] 
} 
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wadocs.pepipost.com/webhooks/delivery-notification.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
