POST Request/ServiceTime

Update the service time for a request

Request Information

URI Parameters

None.

Body Parameters

SessionTime

EAIntegrationServiceTime
NameDescriptionTypeAdditional information
PreInviteToken

Either PreInviteToken or RequestId can be used to identify the service Request.

string

None.

RequestId

Either PreInviteToken or RequestId can be used to identify the service Request.

integer

None.

SessionTimeList

The list of Session Time

Collection of EAIntegrationSessionTime

None.

Request Formats

application/json, text/json

Sample:
{
  "PreInviteToken": "sample string 1",
  "RequestId": 1,
  "SessionTimeList": [
    {
      "JoinTimeUTC": "sample string 1",
      "LeaveTimeUTC": "sample string 2",
      "DurationSeconds": 1
    },
    {
      "JoinTimeUTC": "sample string 1",
      "LeaveTimeUTC": "sample string 2",
      "DurationSeconds": 1
    }
  ]
}

application/xml, text/xml

Sample:
<EAIntegrationServiceTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <PreInviteToken>sample string 1</PreInviteToken>
  <RequestId>1</RequestId>
  <SessionTimeList>
    <EAIntegrationSessionTime>
      <DurationSeconds>1</DurationSeconds>
      <JoinTimeUTC>sample string 1</JoinTimeUTC>
      <LeaveTimeUTC>sample string 2</LeaveTimeUTC>
    </EAIntegrationSessionTime>
    <EAIntegrationSessionTime>
      <DurationSeconds>1</DurationSeconds>
      <JoinTimeUTC>sample string 1</JoinTimeUTC>
      <LeaveTimeUTC>sample string 2</LeaveTimeUTC>
    </EAIntegrationSessionTime>
  </SessionTimeList>
</EAIntegrationServiceTime>

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 'EAIntegrationServiceTime'.

Response Information

Resource Description

Successful: Reason

EAIntegrationResultGeneral
NameDescriptionTypeAdditional information
Successful

Whether the function call is successful True: Successful False: Failed

boolean

None.

Reason

If the call is failed, return the reason.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Successful": true,
  "Reason": "sample string 2"
}

application/xml, text/xml

Sample:
<EAIntegrationResultGeneral xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Reason>sample string 2</Reason>
  <Successful>true</Successful>
</EAIntegrationResultGeneral>