GET api/DeliveryAgent/Agents/GetDeliveryAgentMobileNotification?ID={ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DeliveryAgentMobileNotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryAgentID | string |
None. |
|
| Category | AgentMobileNotificationCategories |
None. |
|
| Title | string |
None. |
|
| Body | string |
None. |
|
| RedirectToWeb | boolean |
None. |
|
| TransDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DeliveryAgentID": "sample string 1",
"Category": 0,
"Title": "sample string 2",
"Body": "sample string 3",
"RedirectToWeb": true,
"TransDateTime": "2025-12-07T10:00:05.6356474+05:30"
},
{
"DeliveryAgentID": "sample string 1",
"Category": 0,
"Title": "sample string 2",
"Body": "sample string 3",
"RedirectToWeb": true,
"TransDateTime": "2025-12-07T10:00:05.6356474+05:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfDeliveryAgentMobileNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeliveryAgent.Operations.CustomModels">
<DeliveryAgentMobileNotificationModel>
<Body>sample string 3</Body>
<Category>DOC_VALIDITY_REMAINDER</Category>
<DeliveryAgentID>sample string 1</DeliveryAgentID>
<RedirectToWeb>true</RedirectToWeb>
<Title>sample string 2</Title>
<TransDateTime>2025-12-07T10:00:05.6356474+05:30</TransDateTime>
</DeliveryAgentMobileNotificationModel>
<DeliveryAgentMobileNotificationModel>
<Body>sample string 3</Body>
<Category>DOC_VALIDITY_REMAINDER</Category>
<DeliveryAgentID>sample string 1</DeliveryAgentID>
<RedirectToWeb>true</RedirectToWeb>
<Title>sample string 2</Title>
<TransDateTime>2025-12-07T10:00:05.6356474+05:30</TransDateTime>
</DeliveryAgentMobileNotificationModel>
</ArrayOfDeliveryAgentMobileNotificationModel>