Get all supported locales

get

/oaa-drss/v1/themes/locales

Retrieves all active locales for the OUA

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

A list of supported locales
Body ()
Root Schema : schema
Type: array
Show Source

401 Response

Unauthorized Access

500 Response

Internal server error
Back to Top

Examples

The following example shows a sample request and response for retrieving themes for all locales.

cURL Command to Retrieve all Language Themes

curl --location --request GET '<DRSS>/v1/themes/locales' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in JSON Format

[
    "en_US",
    "es",
    "fr"
]
Back to Top