DataConnectorControllerUnlinkVDD Method

Unlinks a data connector from VDD so further MDR changes will not attempt to sync to VDD. Intended for the scenario where the connector has already been deleted in VDD.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (26.1.0.1000)
Syntax
[HttpPostAttribute("UnlinkJdbc")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ApiExplorerSettingsAttribute(IgnoreApi = true)]
public ActionResult UnlinkVDD(
	Guid id,
	[FromBodyAttribute] UnlinkDataConnectorOptions unlinkDataConnectorOptions,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the data connector to unlink.
unlinkDataConnectorOptions
Type: Dundas.BI.WebApi.ModelsUnlinkDataConnectorOptions
The options for unlinking the data connector, including the Data Discovery session ID.
sessionId (Optional)
Type: SystemNullableGuid
The current session ID.

Return Value

Type: ActionResult
The operation completed successfully. It returns the data connector ID.
See Also