GET api/Account/GetNotifications
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
notifications_response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| notifications | Collection of notificationsList |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"notifications": [
{
"Title": "sample string 1",
"Message": "sample string 2",
"AddedOn": "2025-12-21T07:54:46.3340666+04:00"
},
{
"Title": "sample string 1",
"Message": "sample string 2",
"AddedOn": "2025-12-21T07:54:46.3340666+04:00"
}
]
}
application/xml, text/xml
Sample:
<notifications_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
<message>sample string 2</message>
<notifications>
<notificationsList>
<AddedOn>2025-12-21T07:54:46.3340666+04:00</AddedOn>
<Message>sample string 2</Message>
<Title>sample string 1</Title>
</notificationsList>
<notificationsList>
<AddedOn>2025-12-21T07:54:46.3340666+04:00</AddedOn>
<Message>sample string 2</Message>
<Title>sample string 1</Title>
</notificationsList>
</notifications>
<success>true</success>
</notifications_response>