POST Client/Request/CallFinishedNew

Finished the call (Successful or cancelled)

Request Information

URI Parameters

None.

Body Parameters

Call Info

ParaCallInfoList
NameDescriptionTypeAdditional information
NeedSurvey

string

None.

TotalTime

decimal number

None.

IsSuccessful

boolean

None.

Calls

Collection of ParaCallInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "NeedSurvey": "sample string 1",
  "TotalTime": 2.0,
  "IsSuccessful": true,
  "Calls": [
    {
      "StartTime_Utc": "2025-04-25T15:29:01.0500655Z",
      "EndTime_Utc": "2025-04-25T15:29:01.0500655Z",
      "CallTime": 3.0,
      "IsSuccessful": true,
      "AdditionalInfo": "sample string 5",
      "ThirdPartyCallId": "sample string 6"
    },
    {
      "StartTime_Utc": "2025-04-25T15:29:01.0500655Z",
      "EndTime_Utc": "2025-04-25T15:29:01.0500655Z",
      "CallTime": 3.0,
      "IsSuccessful": true,
      "AdditionalInfo": "sample string 5",
      "ThirdPartyCallId": "sample string 6"
    }
  ]
}

application/xml, text/xml

Sample:
<ParaCallInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Calls>
    <ParaCallInfo>
      <AdditionalInfo>sample string 5</AdditionalInfo>
      <CallTime>3</CallTime>
      <EndTime_Utc>2025-04-25T15:29:01.0500655Z</EndTime_Utc>
      <IsSuccessful>true</IsSuccessful>
      <StartTime_Utc>2025-04-25T15:29:01.0500655Z</StartTime_Utc>
      <ThirdPartyCallId>sample string 6</ThirdPartyCallId>
    </ParaCallInfo>
    <ParaCallInfo>
      <AdditionalInfo>sample string 5</AdditionalInfo>
      <CallTime>3</CallTime>
      <EndTime_Utc>2025-04-25T15:29:01.0500655Z</EndTime_Utc>
      <IsSuccessful>true</IsSuccessful>
      <StartTime_Utc>2025-04-25T15:29:01.0500655Z</StartTime_Utc>
      <ThirdPartyCallId>sample string 6</ThirdPartyCallId>
    </ParaCallInfo>
  </Calls>
  <IsSuccessful>true</IsSuccessful>
  <NeedSurvey>sample string 1</NeedSurvey>
  <TotalTime>2</TotalTime>
</ParaCallInfoList>

Response Information

Resource Description

ResultRequestFinish
NameDescriptionTypeAdditional information
NeedSurvey

string

None.

Reason

string

None.

Response Formats

application/json, text/json

Sample:
{
  "NeedSurvey": "sample string 1",
  "Reason": "sample string 2"
}

application/xml, text/xml

Sample:
<RequestSurveyRequest.ResultRequestFinish xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WEYILib">
  <NeedSurvey>sample string 1</NeedSurvey>
  <Reason>sample string 2</Reason>
</RequestSurveyRequest.ResultRequestFinish>