GET api/REST/GetLiveDataForWebApp?sessionId={sessionId}&machine={machine}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sessionId

string

Required

machine

string

Required

Body Parameters

None.

Response Information

Resource Description

LiveDataForWebApp
NameDescriptionTypeAdditional information
SessionId

string

None.

Machine

string

None.

Project

string

None.

ProjectId

integer

None.

SurfaceTemperature

decimal number

None.

FrontICMV

decimal number

None.

FrontVibrationFreq

decimal number

None.

FrontVibrationAmplitude

decimal number

None.

SpeedFromSensor

decimal number

None.

LatitudeFromSensor

decimal number

None.

LongitudeFromSensor

decimal number

None.

HeightFromSensor

decimal number

None.

RequiredVibrationPasses

integer

None.

RequiredStaticPasses

integer

None.

MinSurfaceTemp

integer

None.

MaxSurfaceTemp

integer

None.

TargetICMV

integer

None.

SensorDateTime

date

None.

LastStopEventDateTime

date

None.

LastUpdated

date

None.

MachineId

integer

None.

LastStartEventDateTime

date

None.

Yaw

decimal number

None.

Quality

integer

None.

FrontBouncingState

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "SessionId": "sample string 1",
  "Machine": "sample string 2",
  "Project": "sample string 3",
  "ProjectId": 4,
  "SurfaceTemperature": 5.1,
  "FrontICMV": 6.1,
  "FrontVibrationFreq": 7.1,
  "FrontVibrationAmplitude": 8.1,
  "SpeedFromSensor": 9.1,
  "LatitudeFromSensor": 10.1,
  "LongitudeFromSensor": 11.1,
  "HeightFromSensor": 12.1,
  "RequiredVibrationPasses": 13,
  "RequiredStaticPasses": 14,
  "MinSurfaceTemp": 15,
  "MaxSurfaceTemp": 16,
  "TargetICMV": 17,
  "SensorDateTime": "2025-12-13T09:11:26.3913035+00:00",
  "LastStopEventDateTime": "2025-12-13T09:11:26.3913035+00:00",
  "LastUpdated": "2025-12-13T09:11:26.3913035+00:00",
  "MachineId": 21,
  "LastStartEventDateTime": "2025-12-13T09:11:26.3913035+00:00",
  "Yaw": 23.1,
  "Quality": 24,
  "FrontBouncingState": 25
}

application/xml, text/xml

Sample:
<LiveDataForWebApp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses">
  <FrontBouncingState>25</FrontBouncingState>
  <FrontICMV>6.1</FrontICMV>
  <FrontVibrationAmplitude>8.1</FrontVibrationAmplitude>
  <FrontVibrationFreq>7.1</FrontVibrationFreq>
  <HeightFromSensor>12.1</HeightFromSensor>
  <LastStartEventDateTime>2025-12-13T09:11:26.3913035+00:00</LastStartEventDateTime>
  <LastStopEventDateTime>2025-12-13T09:11:26.3913035+00:00</LastStopEventDateTime>
  <LastUpdated>2025-12-13T09:11:26.3913035+00:00</LastUpdated>
  <LatitudeFromSensor>10.1</LatitudeFromSensor>
  <LongitudeFromSensor>11.1</LongitudeFromSensor>
  <Machine>sample string 2</Machine>
  <MachineId>21</MachineId>
  <MaxSurfaceTemp>16</MaxSurfaceTemp>
  <MinSurfaceTemp>15</MinSurfaceTemp>
  <Project>sample string 3</Project>
  <ProjectId>4</ProjectId>
  <Quality>24</Quality>
  <RequiredStaticPasses>14</RequiredStaticPasses>
  <RequiredVibrationPasses>13</RequiredVibrationPasses>
  <SensorDateTime>2025-12-13T09:11:26.3913035+00:00</SensorDateTime>
  <SessionId>sample string 1</SessionId>
  <SpeedFromSensor>9.1</SpeedFromSensor>
  <SurfaceTemperature>5.1</SurfaceTemperature>
  <TargetICMV>17</TargetICMV>
  <Yaw>23.1</Yaw>
</LiveDataForWebApp>