DTC Freeze Frames
Some engine codes will create a freeze frame representing a series of vehicle data that was requested at the time the code was set.
GetDTCFreezeFrames
This request will return an array of freeze frames up to the last time your VOYO device was plugged in.
Request
curl -L -X POST 'https://{DOMAIN}/voyorequest/GetDTCFreezeFrames
-d 'serial={SERIAL}'
-H 'Accept: application/json'
-H 'Authorization: Bearer {APIKEY}'
| Parameter | Description |
|---|---|
serial |
VOYO Device serial number |
Error Responses
HTTP/1.1 400 Bad Request
HTTP/1.1 401 Unauthorized
/// Request requires "serial"
{ "error":"Requires Device Identifier!" }
/// "serial" is not registered to provided "apikey"
{ "error":"Unauthorized Device Requested!" }
// There is no record of this device
{ "error":"Device does not exist!" }
/// There are no DTC Freeze Frames for this VOYO
{ "error":"Device has no freeze frame!" }
Success Responses
{
"error":"Success!", "PID":"", "data":"", "frame":"", "dtc_number":"", "timestamp":"", "unit":""
}