The following commands have been deprecated and should not be used. They will continue to work for existing implementations until otherwise notified.
Get Decoder Passings (File)
GET .../customers/{customerID}/devices/{deviceID}/files/{fileNo}/passings
Returns the content of the passing file with the given device ID / file number
Query Parameters
fromPassing (integer) - The minimum passing number to start with (default: 1)
amount (integer) - The amount of passings to send from the file, if there are less passings available then the max available will be sent
download (integer) - Set 1 to download a passings file (.txt format)
Response Format
{
"Passings": array[ Decoder Passing ]
}
Get Decoder Passings (Multi)
GET .../customers/{customerID}/devices/{deviceID}/passings
Returns all passings for the given device ID
Query Parameters
fromFile (integer) - The minimum file number to be queried (default: 1)
fromPassing (integer) - The minimum passing number to start with (default: 1)
amount (integer) - The amount of passings to send from the file, if there are less passings available then the max available will be sent
Response Format
{
"Passings": array[ Decoder Passing ]
}
Get Track Box TrackPings (File)
GET .../customers/{customerID}/devices/{deviceID}/files/{fileNo}/trackpings
Returns the content of the trackping file with the given device ID / file number
Query Parameters
fromTrackping (integer) - The minimum passing number to start with (default: 1)
amount (integer) - The amount of trackpings to send from the file, if there are less trackpings available then the max available will be sent
download (integer) - Set 1 to download a trackpings file (.txt format)
Response Format
{
"Trackpings": array[ Trackping ]
}
Get Track Box TrackPings (Multi)
GET .../customers/{customerID}/devices/{deviceID}/trackpings
Returns all trackpings for the given device ID
Query Parameters
fromFile (integer) - The minimum file number to be queried (default: 1)
fromTrackping (integer) - The minimum trackping number to start with (default: 1)
amount (integer) - The amount of trackpings to send from the file, if there are less trackpings available then the max available will be sent
Response Format
{
"Trackpings": array[ Trackping ]
}