# 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", 
        } 
        ] 
} 
```
