RelationshipControllerUpdateRelationship 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.ModelsRelationshipData
The data that needs to be modified.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

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