Use this method to get all SMS statuses. By default, you can only access data from the last month
Request was successfully processed
Additional data
var client = new RestClient("https://api.redlink.pl/v2.1/sms/statuses?offset=SOME_INTEGER_VALUE&limit=SOME_INTEGER_VALUE&dateTo=SOME_STRING_VALUE&dateFrom=SOME_STRING_VALUE&sender=SOME_STRING_VALUE"); var request = new RestRequest(Method.GET); request.AddHeader("authorization", "REPLACE_KEY_VALUE"); IRestResponse response = client.Execute(request);
{ "meta": { "numberOfErrors": 0, "numberOfData": 1, "status": 200, "uniqId": "00d928f759" }, "data": [ { "externalId": "121212121-12121212-121212-2121212", "status": 1, "statusDesc": "DELIVERED", "statusTime": 1643723643, "webhookUrl": "text" } ] }