GET api/Notification/GetAllSMSHistory
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of NMSMSMessageDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageId | integer |
None. |
|
| SMSType | string |
None. |
|
| SMSContent | string |
None. |
|
| CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MessageId": 1,
"SMSType": "sample string 2",
"SMSContent": "sample string 3",
"CreatedDate": "2026-06-25T22:13:53.0172327-04:00"
},
{
"MessageId": 1,
"SMSType": "sample string 2",
"SMSContent": "sample string 3",
"CreatedDate": "2026-06-25T22:13:53.0172327-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfNMSMSMessageDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Notifications">
<NMSMSMessageDto>
<CreatedDate>2026-06-25T22:13:53.0172327-04:00</CreatedDate>
<MessageId>1</MessageId>
<SMSContent>sample string 3</SMSContent>
<SMSType>sample string 2</SMSType>
</NMSMSMessageDto>
<NMSMSMessageDto>
<CreatedDate>2026-06-25T22:13:53.0172327-04:00</CreatedDate>
<MessageId>1</MessageId>
<SMSContent>sample string 3</SMSContent>
<SMSType>sample string 2</SMSType>
</NMSMSMessageDto>
</ArrayOfNMSMSMessageDto>