GET api/sms/templates
Gives you a list of your SMS templates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of SMS templates
Collection of TemplateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Created |
Timestamp for SMS template creation |
date |
None. |
| Modified |
Timestamp for latest modification of the SMS template |
date |
None. |
| ID |
SMS template ID |
integer |
Required |
| Name |
SMS template name |
string |
Required |
| Text |
SMS template text contents |
string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"Created": "2025-12-16T03:27:13.5741845+00:00",
"Modified": "2025-12-16T03:27:13.5741845+00:00",
"ID": 1,
"Name": "sample string 2",
"Text": "sample string 3"
},
{
"Created": "2025-12-16T03:27:13.5741845+00:00",
"Modified": "2025-12-16T03:27:13.5741845+00:00",
"ID": 1,
"Name": "sample string 2",
"Text": "sample string 3"
}
]