POST api/CentralStation/contactMethod

Request Information

URI Parameters

None.

Body Parameters

CreateCentralStationContactMethodRequest
NameDescriptionTypeAdditional information
CSID

integer

None.

ContactID

integer

None.

ContactMethodValue

string

None.

Type

integer

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CSID": 1,
  "ContactID": 2,
  "ContactMethodValue": "sample string 3",
  "Type": 4,
  "SessionNum": 5,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 6",
  "StagesURL": "sample string 7"
}

application/xml, text/xml

Sample:
<CreateCentralStationContactMethodRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 7</StagesURL>
  <ApplicationCode>sample string 6</ApplicationCode>
  <SessionNum>5</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <CSID>1</CSID>
  <ContactID>2</ContactID>
  <ContactMethodValue>sample string 3</ContactMethodValue>
  <Type>4</Type>
</CreateCentralStationContactMethodRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CreateCentralStationConactMethodResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

ContactMethodID

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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