v1

latestOpenAPI 3.1.02026-07-2414238909.1 KB

Track an SMS

You can get all the tracking information for the messages (parts) of a single SMS by providing its message id.

get/sms/tracking/single/{trackingId}

Path parameters

trackingIdstring required

The unique tracking id of the sms

Headers

Authorizationstring required

Bearer {access_token}

Response

200

smsIdstring
messageIdstring
tostring
groupsobject[]
countrystring
operatorstring
bodystring
applicationNamestring
originatingServicestring
latencyinteger
partsinteger
partinteger
pricenumber
fromstring
directionstring

Example response

[
  {
    "smsId": "23c2bd04-f76e-11e6-bc64-92361f002671",
    "messageId": "29c2ad68-f76e-11e6-bc64-92361f002671",
    "to": "+306912345678",
    "country": "GR",
    "operator": "string",
    "status": {
      "status": "Delivered",
      "reason": {
        "detailedStatus": "Delivered",
        "description": "The SMS was sent and it was delivered to its recipient."
      },
      "date": "2016-06-23T06:55:57Z"
    },
    "body": "string",
    "applicationName": "Routee",
    "originatingService": "Sms",
    "latency": 1,
    "parts": 1,
    "part": 1,
    "price": 0.036,
    "from": "amdTelecom",
    "direction": "Outbound"
  }
]