Add a New Internationalization Message

post/i18nmanager.put

Adds overridden internationalization messages to the existing collection.

Required roles

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

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

Responses
201

Created - the new internationalization messages have been added.

403

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

Request samples
application/json
{
  • "data": {
    • "messages": {
      • "testKey": "testValue"
      },
    • "partitionWideOverride": true
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": { },
    • "errors": {
      • "Message": {
        • "errorMessage": "string"
        },
      • "Status": {
        • "errorMessage": "string"
        },
      • "HTTPCode": {
        • "errorMessage": "string"
        },
      • "Action": {
        • "errorMessage": "string"
        },
      • "Timestamp": {
        • "errorMessage": "string"
        }
      },
    • "status": 0
    }
}