internationalization (i18n)
This method retrieves the i18n tags that are used for application localization and internationalization.
Request (GET)
/gateway/i18n/{version}/tags/{brand_id}/{language}
Parameters:
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| version | path | string | true | The API version to use. |
| language | path | string | true | The language tags should be fetched in. |
| brand_id | path | int | true | The ID of the casino. If a brand_id is not provided, all message formats will be fetched from default storage. |
Response
Status 200
{
"bo.currency.CAD": "CAD - Kanadisches Pfund",
"bo.currency.AUD": "AUD - Australischer Dollar",
"bo.currency.EUR": "EUR - Euro"
}Status 400
{
"errMsg": "invalid input - invalid brand id"
}Status 500
{
"errMsg": "internal server error"
}Response Parameters:
Response will contain json object with all the available tags in the system for the given language.