GET api/ConversationAnalysis/GetSupportedLanguages

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SupportedLanguageModel
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

Name

string

None.

LanguageCode

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "1c0269f4-1275-45fc-a7b3-4bedf4efb181",
    "Name": "sample string 2",
    "LanguageCode": "sample string 3",
    "Active": true
  },
  {
    "ID": "1c0269f4-1275-45fc-a7b3-4bedf4efb181",
    "Name": "sample string 2",
    "LanguageCode": "sample string 3",
    "Active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSupportedLanguageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.AI.Portal.DataLayer.Common">
  <SupportedLanguageModel>
    <Active>true</Active>
    <ID>1c0269f4-1275-45fc-a7b3-4bedf4efb181</ID>
    <LanguageCode>sample string 3</LanguageCode>
    <Name>sample string 2</Name>
  </SupportedLanguageModel>
  <SupportedLanguageModel>
    <Active>true</Active>
    <ID>1c0269f4-1275-45fc-a7b3-4bedf4efb181</ID>
    <LanguageCode>sample string 3</LanguageCode>
    <Name>sample string 2</Name>
  </SupportedLanguageModel>
</ArrayOfSupportedLanguageModel>