GET api/v2/telemetrystations/telemetrydecodesettings

Returns current telemetry decode settings (e.g. current shift, current rating table name, and shift curve name)

NameDescriptionType
abbrev

Station Abbreviation

string
current_shift

Current Shift

decimal number
function

Function

string
modified

Last date time that this record was modified in the DWR database

date
parameter

Parameter

string
rating_start_date

Rating Start Date

date
rating_table_name

Rating Table Name

string
shift_curve_name

Shift Curve Name

string
shift_start_date

Shift Start Date

date
shiftcurve_start_date

Shift Curve Start Date

date

Response Formats

application/json, text/json
Sample:
[
  {
    "abbrev": "sample string 1",
    "parameter": "sample string 2",
    "function": "sample string 3",
    "rating_table_name": "sample string 4",
    "rating_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "shift_curve_name": "sample string 6",
    "shiftcurve_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "current_shift": 1.1,
    "shift_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "modified": "2024-04-26T11:31:46.3174979-06:00"
  },
  {
    "abbrev": "sample string 1",
    "parameter": "sample string 2",
    "function": "sample string 3",
    "rating_table_name": "sample string 4",
    "rating_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "shift_curve_name": "sample string 6",
    "shiftcurve_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "current_shift": 1.1,
    "shift_start_date": "2024-04-26T11:31:46.3174979-06:00",
    "modified": "2024-04-26T11:31:46.3174979-06:00"
  }
]
application/xml, text/xml
Sample:
<ArrayOfTelemetryDecodeSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <TelemetryDecodeSettings>
    <abbrev>sample string 1</abbrev>
    <current_shift>1.1</current_shift>
    <function>sample string 3</function>
    <modified>2024-04-26T11:31:46.3174979-06:00</modified>
    <parameter>sample string 2</parameter>
    <rating_start_date>2024-04-26T11:31:46.3174979-06:00</rating_start_date>
    <rating_table_name>sample string 4</rating_table_name>
    <shift_curve_name>sample string 6</shift_curve_name>
    <shift_start_date>2024-04-26T11:31:46.3174979-06:00</shift_start_date>
    <shiftcurve_start_date>2024-04-26T11:31:46.3174979-06:00</shiftcurve_start_date>
  </TelemetryDecodeSettings>
  <TelemetryDecodeSettings>
    <abbrev>sample string 1</abbrev>
    <current_shift>1.1</current_shift>
    <function>sample string 3</function>
    <modified>2024-04-26T11:31:46.3174979-06:00</modified>
    <parameter>sample string 2</parameter>
    <rating_start_date>2024-04-26T11:31:46.3174979-06:00</rating_start_date>
    <rating_table_name>sample string 4</rating_table_name>
    <shift_curve_name>sample string 6</shift_curve_name>
    <shift_start_date>2024-04-26T11:31:46.3174979-06:00</shift_start_date>
    <shiftcurve_start_date>2024-04-26T11:31:46.3174979-06:00</shiftcurve_start_date>
  </TelemetryDecodeSettings>
</ArrayOfTelemetryDecodeSettings>