SessionControllerDeleteSessionsForAccount Method

Deletes all sessions associated with the account ID passed in.

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("Account/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<int> DeleteSessionsForAccount(
	Guid id,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The account ID.
sessionId (Optional)
Type: SystemNullableGuid
The current session ID.

Return Value

Type: ActionResultInt32
The operation completed successfully. The payload contains a Int32 representing the number of sessions deleted.
See Also