List Internationalization Messages

post/i18nmanager.fetchWithExtraData

Retrieves internationalization messages. Each i18n message contains key, value, and overriddenValue.

Required roles

  • I18NADMIN
  • SUPPORT
Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
partitionWideOverride
boolean

Set to true to fetch Partition-wide messages, or false to fetch Private messages.

Responses
200

OK - contains the messages for the locale.

Response Schema: application/json
object
node
string
Array of objects
Array
localeLanguage
string
Array of objects
status
integer
403

Forbidden - the user does not have a required permission (I18N_FETCH).

Request samples
application/json
{
  • "data": {
    • "partitionWideOverride": true
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "pricefx-cluster-app-frontend",
    • "data": [
      • {
        • "localeLanguage": "en",
        • "localeData": [
          ]
        }
      ],
    • "status": 0
    }
}