/mgmt/config/default/Language GET

Use the HTTP GET method with the /mgmt/config/default/Language resource to request a list of current appliance language settings.

Resource URL

https://host:port/mgmt/config/default/Language
Where port is 5554 by default.

Request headers

The following header must be sent with the request:
Authorization
This header must be sent to perform authentication.

Request body format

None.

Security requirements

The caller must be authenticated as an appliance user with sufficient authority. For more information about security, see Types of user and how they are authenticated and User authorization, credential mapping, and access profiles.

Response status codes

200
Information retrieved successfully.
400
Invalid data provided.
401
Not authenticated.
The caller must be authenticated as an appliance user. See Types of user and how they are authenticated for more information.
403
Not authorized.
The caller is authenticated but does not the authority to perform this action. See User authorization, credential mapping, and access profiles for more information.

Response headers

Content-Type
This header is returned with a value of application/json.

Response body format

The response is in JSON format. The response includes the following fields, which are repeated for each of the available language on the appliance:

Name
String
The code for the language. The following codes are available on the appliance:
  • de
  • en
  • es
  • fr
  • it
  • ja
  • ko
  • pt_BR
  • zh_CN
  • zh_TW
  • ru
mAdminState
String.
The administrative state of the language can be one of the following values:
  • enabled
  • disabled
UserSummary
String.
The name of the language. The following languages are available:
  • German
  • English
  • Spanish
  • French
  • Italian
  • Japanese
  • Korean
  • Portuguese
  • Simplified Chinese
  • Traditional Chinese

Examples

The following example requests the language settings on the appliance:

The following URL is used with the HTTP GET method:
GET /mgmt/config/default/Language
The following listing shows the received response:
{
    "_links" : {
        "self" : {
           "href" : "/mgmt/config/default/Language"
        }, 
        "doc" : {
           "href" : "/mgmt/docs/config/Language"
        }
     }, 
    "Language" : [
       {"name" : "de", 
          "_links" : {
              "self" : {
                 "href" : "/mgmt/config/default/Language/de"
              }, 
              "doc" : {"href" : "/mgmt/docs/config/Language"
              }
          }, 
          "mAdminState" : "disabled", 
          "UserSummary" : "German"
       }, 
       {"name" : "en", 
          "_links" : {
            "self" : {
               "href" : "/mgmt/config/default/Language/en"
            }, 
            "doc" : {
               "href" : "/mgmt/docs/config/Language"
            }
          }, 
          "mAdminState" : "enabled", 
          "UserSummary" : "English"
        }, 
        {"name" : "es", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/es"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Spanish"
        }, 
        {"name" : "fr", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/fr"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "French"
        }, 

        {"name" : "it", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/it"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Italian"
        }, 
        {"name" : "ja", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/ja"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Japanese"
        }, 

        {"name" : "ko", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/ko"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Korean"
        }, 
        {"name" : "pt-BR", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/pt_BR"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Portuguese"
        }, 
        {"name" : "zh_CN", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/zh_CN"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Simplified Chinese"
        }, 
        {"name" : "zh_TW", 
           "_links" : {
             "self" : {
                "href" : "/mgmt/config/default/Language/zh_TW"
             }, 
             "doc" : {
                "href" : "/mgmt/docs/config/Language"
             }
           }, 
           "mAdminState" : "disabled", 
           "UserSummary" : "Traditional Chinese"
        },