RelationshipController.DeleteRelationship Method |
Deletes a relationship.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpDeleteAttribute("{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult DeleteRelationship(
Guid id,
Guid structureId,
Guid referencedStructureId,
Guid? sessionId = null
)
<HttpDeleteAttribute("{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function DeleteRelationship (
id As Guid,
structureId As Guid,
referencedStructureId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpDeleteAttribute(L"{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ DeleteRelationship(
Guid id,
Guid structureId,
Guid referencedStructureId,
Nullable<Guid> sessionId = nullptr
)
[<HttpDeleteAttribute("{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member DeleteRelationship :
id : Guid *
structureId : Guid *
referencedStructureId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the relationship to delete. - structureId
- Type: System.Guid
The ID of the structure. - referencedStructureId
- Type: System.Guid
The ID of the referenced structure. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult
See Also