Visteon · Example Payload

Visteon Phoenix Getvehicledata Example

AutomotiveConnected CarInfotainmentIoTFortune 500

Visteon Phoenix Getvehicledata Example is an example object payload from Visteon, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "/vehicle/data",
    "headers": {
      "X-Phoenix-API-Key": "{{VISTEON_PHOENIX_API_KEY}}",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "speed": 65.5,
      "fuelLevel": 72,
      "odometer": 24531.7,
      "engineRunning": true,
      "gearPosition": "D",
      "hvac": {
        "temperature": 21.5,
        "fanSpeed": 3,
        "isAcOn": true
      }
    }
  }
}