POST ClientPreSelection/AdditionalInfoOptionListGet?SourceLanguageId={SourceLanguageId}&TargetLanguageId={TargetLanguageId}

Client Preselection AdditionalInfoOptionList Refresh

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SourceLanguageId

integer

Required

TargetLanguageId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResultTwilioToken

ResultEAAdditionalOption
NameDescriptionTypeAdditional information
VideoOptionList

Collection of ResultVideoOption

None.

GenderOptionList

Collection of ResultGenderOption

None.

RecordingOptionList

Collection of ResultRecordingOption

None.

Response Formats

application/json, text/json

Sample:
{
  "VideoOptionList": [
    {
      "VideoOptionCodeId": 1,
      "VideoOptionCode": "sample string 1",
      "Selected": true
    },
    {
      "VideoOptionCodeId": 1,
      "VideoOptionCode": "sample string 1",
      "Selected": true
    }
  ],
  "GenderOptionList": [
    {
      "GenderOptionCodeId": 1,
      "GenderOption": "sample string 1",
      "Selected": true
    },
    {
      "GenderOptionCodeId": 1,
      "GenderOption": "sample string 1",
      "Selected": true
    }
  ],
  "RecordingOptionList": [
    {
      "RecordingOptionCodeId": 1,
      "RecordingOption": "sample string 1",
      "Selected": true
    },
    {
      "RecordingOptionCodeId": 1,
      "RecordingOption": "sample string 1",
      "Selected": true
    }
  ]
}

application/xml, text/xml

Sample:
<ResultEAAdditionalOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <GenderOptionList>
    <ResultGenderOption>
      <GenderOption>sample string 1</GenderOption>
      <GenderOptionCodeId>1</GenderOptionCodeId>
      <Selected>true</Selected>
    </ResultGenderOption>
    <ResultGenderOption>
      <GenderOption>sample string 1</GenderOption>
      <GenderOptionCodeId>1</GenderOptionCodeId>
      <Selected>true</Selected>
    </ResultGenderOption>
  </GenderOptionList>
  <RecordingOptionList>
    <ResultRecordingOption>
      <RecordingOption>sample string 1</RecordingOption>
      <RecordingOptionCodeId>1</RecordingOptionCodeId>
      <Selected>true</Selected>
    </ResultRecordingOption>
    <ResultRecordingOption>
      <RecordingOption>sample string 1</RecordingOption>
      <RecordingOptionCodeId>1</RecordingOptionCodeId>
      <Selected>true</Selected>
    </ResultRecordingOption>
  </RecordingOptionList>
  <VideoOptionList>
    <ResultVideoOption>
      <Selected>true</Selected>
      <VideoOptionCode>sample string 1</VideoOptionCode>
      <VideoOptionCodeId>1</VideoOptionCodeId>
    </ResultVideoOption>
    <ResultVideoOption>
      <Selected>true</Selected>
      <VideoOptionCode>sample string 1</VideoOptionCode>
      <VideoOptionCodeId>1</VideoOptionCodeId>
    </ResultVideoOption>
  </VideoOptionList>
</ResultEAAdditionalOption>