Loyalty.lt
External sms api

Get SMS message status

Get the delivery status of a sent SMS message

GET/{locale}/sms/status/{message_id}

Get the delivery status of a sent SMS message

Authorization

ApiKeyAuth ApiSecretAuth

Path Parameters

locale*string

Locale code

message_id*string

Message ID returned from send request

Response Body

application/json

curl -X GET "https://example.com/lt/sms/status/msg_abc123"
{  "success": true,  "data": {    "message_id": "msg_abc123",    "status": "delivered",    "source": "Loyalty",    "destination": "+37061234567",    "sent_at": "2025-01-15T10:30:00Z",    "delivered_at": "2025-01-15T10:30:05Z",    "cost": {      "amount": 0.05,      "currency": "EUR"    },    "reference": "order-12345"  }}