Open this page in the API Guide

LocalizationController.GetCultureLocalizationInfos Method

Gets all the created and available culture localization infos.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpGetAttribute("Infos")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<LocalizationInfoData>> GetCultureLocalizationInfos(
	string? cultureName = null,
	Guid? sessionId = null
)

Parameters

cultureName (Optional)
Type: System.String
The optional culture name to use to filter the localization infos to. By default, all cultures are retrieved.
sessionId (Optional)
Type: System.Nullable<Guid>
The ID of the session.

Return Value

Type: ActionResult<IList<LocalizationInfoData>>
The operation completed successfully. The payload contains an array of LocalizationInfoData objects.
See Also