Getting the Charsets

Gets a list of all supported charsets on a Web Intelligence Server. Charset is used as a parameter when exporting a document as CSV format.

Request

GET <webiURL>/configuration/charsets

Response

Response type: application/xml or application/json

Response body: details of the supported charsets, where:

  • <charset> contains the description of a supported charset
  • <name> is the charset name
  • <description> is the charset description

Example

<charsets>
    <charset>
        <name>EUC-KR</name>
        <description>Korean (EUC-KR)</description>
    </charset>
    <charset>
        <name>ISO-8859-8</name>
        <description>Hebrew (ISO-8859-8)</description>
    </charset>
    <charset>
        <name>ISO-8859-5</name>
        <description>Cyrillic (ISO-8859-5)</description>
    </charset>
    . . .
    <charset>
        <name>UTF-8</name>
        <description>UTF-8</description>
    </charset>
    <charset>
        <name>HZ-GB-2312</name>
        <description>Chinese Simplified (HZ-GB2312)</description>
    </charset>
    <charset>
        <name>CNS-11643</name>
        <description>Chinese Traditional (EUC-TW)</description>
    </charset>
    <charset>
        <name>CP437</name>
        <description>IBM Latin US (CP437)</description>
    </charset>
</charsets>