Open this page in the API Guide

RelationshipController.UpdateRelationship Method

Updates (or creates) a relationship on a given structure.

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]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<bool> UpdateRelationship(
	[FromBodyAttribute] RelationshipData relationshipData,
	Guid? sessionId = null
)

Parameters

relationshipData
Type: Dundas.BI.WebApi.Models.RelationshipData
The data that needs to be modified.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<Boolean>
The operation completed successfully. The payload contains a Boolean value indicating whether the operation was successful or not.
See Also