Open this page in the API Guide

DataConnectorController.DefineRelationalTabularStructures Method

Defines the structures under a data connector for tabular providers.

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("RelationalTabularStructures/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
public ActionResult<IList<RelationalStructureData>> DefineRelationalTabularStructures(
	Guid id,
	[FromBodyAttribute] IList<RelationalStructureData> options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the data connector to update.
options
Type: System.Collections.Generic.IList<RelationalStructureData>
The data that needs to be saved.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

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