POST api/CentralStation/contact

Request Information

URI Parameters

None.

Body Parameters

CreateCentralStationContact
NameDescriptionTypeAdditional information
CSID

integer

None.

FirstName

string

None.

LastName

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CSID": 1,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "SessionNum": 4,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 5",
  "StagesURL": "sample string 6"
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CreateCentralStatioContactnResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

ContactID

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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