Get theme properties for a locale

get

/oaa-drss/v1/themes/{locale}

Retrieves all active properties for a locale

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Theme properties for the locale
Body ()
Root Schema : ThemeProperties
Type: object
Key-value pairs of theme properties
Show Source

401 Response

Unauthorized Access

404 Response

Theme not found for the given locale

500 Response

Internal server error
Back to Top

Examples

The following example shows a sample request and response for retrieving the parameters for a theme for a given locale.

cURL Command to Retrieve the Parameters Set for a Language Theme in JSON Format

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

Sample Response in JSON Format

{
    "OUACP_ERR_MSG_0008": "The device for this user is blocked. Please contact your administrator.",
    "OUACP_ERR_MSG_0007": "The system is currently offline. Enter your password to proceed. Not all features will be available. To restore all features, please logout and login again when system is online.",
    "OUACP_ERR_MSG_0006": "Password validation failed. Please retry.",
    "OUACP_ERR_MSG_0004": "Did not receive approval from device. Please retry.",
    "OUACP_ERR_MSG_0002": "User access is denied. Please contact your administrator.",
    "OUACP_ERR_MSG_0001": "Incorrect Microsoft Windows Credentials, please try again.",
    "CPFT_EDIT_TEXT_DEFAULT": "Example Company Username",
    "CPFT_TILE_IMAGE": "Enter your Example Company Username",
    "Logo": "Qk2KsAEAAAAAAIoAAAB8AAAAwAAAAMAAAAABABgAAAAAAACwAQDAMgAAwDIAAAAAAAAAAAAAAAD/AAD/AAD/AAAAAAAAAEJHUnMAAAAAAAAAAAAAAAAAAAAAAAetc...",
    "OUACP_ERR_MSG_0009": "Device is blocked for all users. Please contact your administrator.",
    "CPFT_COMMAND_LINK_SIGN_IN_OPTION": "Login with another factor",
    "CPFT_COMMAND_LINK_NOT_USER": "Click if Not",
    "CPFT_PASSWORD_TEXT": "Example Company Password",
    "OUACP_ERR_MSG_0000": "Example Company Universal Authenticator",
    "CPFT_COMMAND_LINK_FORGOT_PASSWORD": "Forgot your password?",
    "CPFT_SMALL_TEXT": "Choose a factor to login:",
    "CPFT_COMMAND_LINK_LOGIN_WITH_PASSWORD": "Login with your password",
    "CPFT_COMMAND_LINK_CHANGE_PASSWORD": "Change your password?"
}
Back to Top