GET api/v1/sms/Logs?deviceKey={deviceKey}
Endpoint to pull the logs by api key. You can filter by deviceKey, is not required.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceKey | string |
None. |
Body Parameters
None.
Response Information
Resource Description
GetSmsLogResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Logs |
Collection of Log |
Collection of Smslog |
None. |
Response Formats
application/json, text/json
Sample:
{
"Logs": [
{
"Id": 1,
"Number": "sample string 2",
"Created": "2026-05-18T01:59:32.3544072+00:00",
"ApiKey": "sample string 4",
"DeviceKey": "sample string 5"
},
{
"Id": 1,
"Number": "sample string 2",
"Created": "2026-05-18T01:59:32.3544072+00:00",
"ApiKey": "sample string 4",
"DeviceKey": "sample string 5"
}
]
}