The suite provides 10 languages for its master data:For example, the following sample request{
  "season_code":"EXAMPLE_SEASON",
  "description_it":"Stagione di esempio",
  "description_en":"Example season",
  "description_de":"Beispielsaison",
  ...
  "year":2024,
  "season":4
}
creates a new season that reports the content valued in the input in the various descriptions.It is not necessary to report all languages where required, it is possible to invoke the service only with the Italian language, or Italian and English, or Italian and another specific language. In this case, the services will return the Italian or English language where nothing has been specified in the description_* fields in the request.Language Management Scenarios#
Italian Only#
If the request only specifies the description_it field, as in the following example:{
  "season_code":"EXAMPLE_SEASON",
  "description_it":"Stagione di esempio",
  "year":2024,
  "season":4
}
the description specified in description_it is automatically reported in all languages.Italian and English#
If the request specifies both description_it and description_en, as in the following example:Â Â {
  {
  "season_code":"EXAMPLE_SEASON",
  "description_it":"Stagione di esempio",
  "description_en":"Example season",
  "year":2024,
  "season":4
}
}
the language description_it is reported as Stagione di esempio, while description_en and all other languages are reported as Example season.Specific Language#
If the request specifies description_it, description_en, and description_de:Â Â {
  "season_code":"EXAMPLE_SEASON",
  "description_it":"Stagione di esempio",
  "description_en":"Example season",
  "description_de":"Beispielsaison",
  "year":2024,
  "season":4
}
the language description_it is reported as Stagione di esempio, while description_en is Example season, description_de is Beispielsaison, and all others are Example season.Updating information occurs even when the field is set to null. If no modifications are desired, omit the field in the request body. For example, to remove a description* (except for description_it, which is always required), invoke the service with the following body:{
"dimension_grouping": "BABY",
"description_fr": null
}
This request will set the description_fr to null. Modified at 2024-06-17 12:20:24