POST api/StartRemoteCall

Request Information

URI Parameters

None.

Body Parameters

RemoteCallFlat
NameDescriptionTypeAdditional information
CallID

string

None.

CallDate

date

None.

CallDuration

integer

None.

HCPs

Collection of HCPRCInfo

None.

MeetingServiceType

MeetingServiceType

None.

InstantMeeting

boolean

None.

PlatformId

integer

None.

DeviceID

string

None.

LastUpdateDate

date

None.

SessionId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CallID": "sample string 1",
  "CallDate": "2025-12-28T18:26:36.376181+01:00",
  "CallDuration": 3,
  "HCPs": [
    {
      "Key": "sample string 1",
      "Email": "sample string 2"
    },
    {
      "Key": "sample string 1",
      "Email": "sample string 2"
    }
  ],
  "MeetingServiceType": 1,
  "InstantMeeting": true,
  "PlatformId": 5,
  "DeviceID": "sample string 6",
  "LastUpdateDate": "2025-12-28T18:26:36.376181+01:00",
  "SessionId": "sample string 8"
}

application/xml, text/xml

Sample:
<RemoteCallFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.ServiceCenter.API.DTO">
  <DeviceID xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">sample string 6</DeviceID>
  <LastUpdateDate xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">2025-12-28T18:26:36.376181+01:00</LastUpdateDate>
  <PlatformId xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">5</PlatformId>
  <SessionId xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">sample string 8</SessionId>
  <CallDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-28T17:26:36.376181Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>60</d2p1:OffsetMinutes>
  </CallDate>
  <CallDuration>3</CallDuration>
  <CallID>sample string 1</CallID>
  <HCPs>
    <HCPRCInfo>
      <Email>sample string 2</Email>
      <Key>sample string 1</Key>
    </HCPRCInfo>
    <HCPRCInfo>
      <Email>sample string 2</Email>
      <Key>sample string 1</Key>
    </HCPRCInfo>
  </HCPs>
  <InstantMeeting>true</InstantMeeting>
  <MeetingServiceType>TokBox</MeetingServiceType>
</RemoteCallFlat>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RemoteCallFlat'.

Response Information

Resource Description

ResponseInfoFlat
NameDescriptionTypeAdditional information
ErrorNumber

integer

None.

ErrorMessage

string

None.

ActionResult

boolean

None.

ResultMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorNumber": 1,
  "ErrorMessage": "sample string 2",
  "ActionResult": true,
  "ResultMessage": "sample string 4",
  "Result": {}
}

application/xml, text/xml

Sample:
<ResponseInfoFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat">
  <ActionResult>true</ActionResult>
  <ErrorMessage>sample string 2</ErrorMessage>
  <ErrorNumber>1</ErrorNumber>
  <Result />
  <ResultMessage>sample string 4</ResultMessage>
</ResponseInfoFlat>