Schemas

GenericResponseDTO

1
2
3
4
5
{
  "error": "string",
  "message": "string",
  "trace_id": "string"
}
Name Type Required Description
error string false none
message string false none
trace_id string false none

DeviceHistoryResponseDTO

1
2
3
4
5
6
7
8
9
{
  "msisdn": "612345678",
  "deviceHistory": [
    {
      "imei": "123456789012345",
      "date": "2023-07-03T14:27:08.312+02:00"
    }
  ]
}
Name Type Required Description
msisdn string false The MSISDN of the device.
deviceHistory [DeviceHistoryDTO] false List of device history entries.

DeviceSimHistoryResponseDTO

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "msisdn": "612345678",
  "deviceSimHistory": [
    {
      "imsi": "123456789012345",
      "imei": "123456789012345",
      "date": "2023-07-03T14:27:08.312+02:00"
    }
  ]
}
Name Type Required Description
msisdn string false The MSISDN of the device.
deviceSimHistory [DeviceSimHistoryDTO] false List of device SIM history entries.

DeviceHistoryDTO

1
2
3
4
{
  "imei": "123456789012345",
  "date": "2023-07-03T14:27:08.312+02:00"
}
Name Type Required Description
imei string true The IMEI of the device.
date string(date-time) true Datetime where the device change was first detected in network events.

DeviceSimHistoryDTO

1
2
3
4
5
{
  "imsi": "123456789012345",
  "imei": "123456789012345",
  "date": "2023-07-03T14:27:08.312+02:00"
}
Name Type Required Description
imsi string true The IMSI of the device.
imei string true The IMEI of the device.
date string(date-time) true Datetime where the device sim change was first detected in network events.