GET api/v2/telemetrystations/telemetryratingtable
Returns telemetry rating table results
| Name | Description | Type |
|---|---|---|
| ratingTableName |
Rating Table Name |
string |
| X |
X Value |
decimal number |
| Y |
Y Value |
decimal number |
Response Formats
application/json, text/json
Sample:
[
{
"ratingTableName": "sample string 1",
"X": 1.0,
"Y": 1.0
},
{
"ratingTableName": "sample string 1",
"X": 1.0,
"Y": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfTelemetryRatingTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<TelemetryRatingTable>
<X>1</X>
<Y>1</Y>
<ratingTableName>sample string 1</ratingTableName>
</TelemetryRatingTable>
<TelemetryRatingTable>
<X>1</X>
<Y>1</Y>
<ratingTableName>sample string 1</ratingTableName>
</TelemetryRatingTable>
</ArrayOfTelemetryRatingTable>