/mcpCisco Unity Connection Provisioning Interface (CUPI) API -- Language Map About Language Map This page contains information on how to use the API to display the language map, which contains mappings between language codes and languages. This is a list of languages available for install on a Cisco Unity Connection server; to view the list of languages actually installed on a server, use this GET method instead: GET http://<connection-server>/vmrest/installedlanguages Note that currently, the API to retrieve the language map and the API to retrieve the installed languages on a server both require System Administrator access. Listing and Viewing The following is an example of a GET that lists all language mappings in the language map: GET http://<connection-server>/vmrest/languagemap The following is an excerpt of the response from the above GET request: 200 OK <?xml version="1.0" encoding="UTF-8"?> <LanguageMappings total="149"> <LanguageMapping> <LanguageCode>1025</LanguageCode> <LanguageAbbreviation>ARA</LanguageAbbreviation> <LanguageTag>ar-SA</LanguageTag> </LanguageMapping> <LanguageMapping> <LanguageCode>1026</LanguageCode> <LanguageAbbreviation>BGR</LanguageAbbreviation> <LanguageTag>bg-BG</LanguageTag> </LanguageMapping> <LanguageMapping> <LanguageCode>1027</LanguageCode> <LanguageAbbreviation>CAT</LanguageAbbreviation> <LanguageTag>ca-ES</LanguageTag> </LanguageMapping> . . . </LanguageMappings> You can also use the query parameters rowsPerPage and pageNumber to limit the number of returned results. For example: GET http://<connection-server>/vmrest/languagemap?rowsPerPage=2&pageNumber=3 This request returns the two languages on the third page, as follows: Cisco Unity Connection Provisioning Interface (CUPI) API 704 Cisco Unity Connection Provisioning Interface (CUPI) API for System Settings Cisco Unity Connection Provisioning Interface (CUPI) API -- Language Map