API Documentation
Toggle TOC panel
<access-service>/api/v1/i18n/bundles

URL structure

1 https://access-service.xy-company.com/api/v1/i18n/bundles

Supported methods and overview

  • GET - retrieves a list of internationalization (i18n) bundles which are currently available (i.e. 'supported') on the Cocoon Data Platform.

Note: This method takes no parameters.

Detailed description

This API endpoint retrieves a list of i18n bundles which are currently available (i.e. 'supported') on the Cocoon Data Platform.

These are i18n bundles which either are built in or have been uploaded to the Cocoon Data Platform.

Supported roles and conditions

This request does not require any authentication or authorization through a Cocoon Data user account.

Required headers

No additional headers are required for submission with this request. This request does not require an access (i.e. Bearer) token.

Returns

If the request succeeded, then an HTTP response status 200 OK is returned.

For successful requests only, a JSON-formatted response containing the following members is also returned:

  • items - .
    • localeCode - .
    • displayDescription - .
  • offset - .
  • count - .
    Example:
    {
    "items": [{
    "localeCode": "de_de",
    "displayDescription": "Deutsch (Deutschland)"
    }, {
    "localeCode": "en_gb",
    "displayDescription": "English (UK)"
    }, {
    "localeCode": "en_us",
    "displayDescription": "English (US)"
    }],
    "offset": "0",
    "count": "3"
    }