Open this page in the API Guide

LocalizationController.StoreLocalizationFile Method

Stores the contents of the specified localization when sent as a file. This API call expects form files inside the request body.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpPostAttribute("File")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(415)]
[ProducesResponseTypeAttribute(440)]
[FormFileAttribute]
public ActionResult<LocalizationInfoData?> StoreLocalizationFile(
	string cultureName,
	Guid moduleId,
	string name,
	bool isOverride,
	Guid? sessionId = null
)

Parameters

cultureName
Type: System.String
The name of the culture to store the localization for.
moduleId
Type: System.Guid
The ID of the module the localization belongs to.
name
Type: System.String
The name of localization.
isOverride
Type: System.Boolean
A flag indicating whether or not this is an override.
sessionId (Optional)
Type: System.Nullable<Guid>
The ID of the session.

Return Value

Type: ActionResult<LocalizationInfoData>
The operation completed successfully. The payload contains a LocalizationInfoData object.
See Also