GET api/sms/received/{sms}
Gives you a given received SMS message
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sms |
SMS ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
SMS message
IncomingSMSDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
SMS message ID |
string |
None. |
| To |
Destination phone number |
string |
None. |
| Prefix |
Destination prefix, if any |
string |
None. |
| Created |
Date when the SMS message was received |
date |
None. |
| CreatedDate |
Date when the SMS message was received |
date |
Deprecated: Use Created instead |
| Prio |
SMS message priority, normal (1) or high (2) |
integer |
Deprecated: No longer makes a difference, use 1 if any Range: inclusive between 1 and 2 |
| From |
SMS message sender name or phone number |
string |
Required |
| Message |
SMS message contents |
string |
Required |
Response Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"To": "sample string 2",
"Prefix": "sample string 3",
"Created": "2025-12-16T03:28:16.3652657+00:00",
"CreatedDate": "2025-12-16T03:28:16.3652657+00:00",
"Prio": 2,
"From": "sample string 5",
"Message": "sample string 6"
}