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

NameDescriptionTypeAdditional information
deviceKey

string

None.

Body Parameters

None.

Response Information

Resource Description

GetSmsLogResponse
NameDescriptionTypeAdditional 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-02-03T02:42:04.1347645+00:00",
      "ApiKey": "sample string 4",
      "DeviceKey": "sample string 5"
    },
    {
      "Id": 1,
      "Number": "sample string 2",
      "Created": "2026-02-03T02:42:04.1347645+00:00",
      "ApiKey": "sample string 4",
      "DeviceKey": "sample string 5"
    }
  ]
}