v1

latestOpenAPI 3.1.02026-07-2414238909.1 KB

Track multiple Number Lookup requests with filters

Limit the tracking result of multiple Lookup records by passing filters

post/lookup/tracking

Query parameters

dateStartstring date

ISO-8601 date-time format

dateEndstring date

ISO-8601 date-time format

pageinteger

The page number to retrieve, default value is 0 (meaning the first page)

sizeinteger

The number of items to retrieve, default value is 10.

sortstring

The field name that will be used to sort the results.

Headers

Content-Typestring required

application/json

Authorizationstring required

Bearer {access_token}

Request body

fieldNamestring required

The name of the field to filter. Possible values: 'lookupID', 'network', 'label', 'country', 'status', 'ported', 'imsi', 'roaming', 'groups', 'campaignName', 'campaignID'. If a non-existed field name value is used then all the results are returned.

searchTermstring required

The exact value that the specified field must match.

searchOperatorstring

Optional: The operator upon which the search operation will be executed. Possible values: 'is', 'is_not', 'contains', 'starts_with', 'ends_with'. If missing defaults to 'is'.

Response

200

totalPagesstring
laststring
totalElementsstring
firststring
numberOfElementsstring
sizestring
numberstring

Example response

{
  "totalPages": "1",
  "last": "true",
  "totalElements": "1",
  "first": "true",
  "numberOfElements": "1",
  "size": "20",
  "number": "1",
  "content": [
    {
      "to": "+447537410297",
      "label": "HLR Lookup label",
      "lookupId": "a9122812-21e0-47c1-ba13-746e4a212655",
      "createdAt": "2015-11-11T16:00Z",
      "statusInfo": {
        "status": "ACTIVE",
        "description": "The lookup signal was successfully delivered.",
        "updatedAt": "2015-11-11T16:00Z"
      },
      "details": {
        "mcc": "234",
        "country": {
          "code": "GB",
          "name": "United Kingdom",
          "localeName": "United Kingdom",
          "isoA3Code": "GBR"
        },
        "network": {
          "name": "Vodafone Ltd",
          "mnc": "15"
        },
        "imsi": "23415",
        "ported": true,
        "portedNetwork": {
          "name": "O2 (UK) Limited",
          "mnc": "10"
        },
        "roamingNetwork": {
          "state": "true",
          "mmc": "GR",
          "mnc": "05",
          "country": "Greece",
          "countryIsoCode": "GR",
          "network": "O5"
        }
      },
      "applicationName": "client"
    }
  ]
}