PUT api/CentralStation/receiver

Request Information

URI Parameters

None.

Body Parameters

UpdateReceiverRequest
NameDescriptionTypeAdditional information
ReceiverID

integer

None.

RetranmissionType

integer

None.

UpdateRetranmissionType

boolean

None.

RecieverType

string

None.

UpdateRecieverType

boolean

None.

SoftwareVersion

string

None.

UpdateSoftwareVersion

boolean

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReceiverID": 1,
  "RetranmissionType": 2,
  "UpdateRetranmissionType": true,
  "RecieverType": "sample string 4",
  "UpdateRecieverType": true,
  "SoftwareVersion": "sample string 6",
  "UpdateSoftwareVersion": true,
  "SessionNum": 8,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 9",
  "StagesURL": "sample string 10"
}

application/xml, text/xml

Sample:
<UpdateReceiverRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 10</StagesURL>
  <ApplicationCode>sample string 9</ApplicationCode>
  <SessionNum>8</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <ReceiverID>1</ReceiverID>
  <RecieverType>sample string 4</RecieverType>
  <RetranmissionType>2</RetranmissionType>
  <SoftwareVersion>sample string 6</SoftwareVersion>
  <UpdateRecieverType>true</UpdateRecieverType>
  <UpdateRetranmissionType>true</UpdateRetranmissionType>
  <UpdateSoftwareVersion>true</UpdateSoftwareVersion>
</UpdateReceiverRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CentralStationResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<CentralStationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Success>true</Success>
</CentralStationResult>