SessionControllerDeleteSessionsById Method

POST /Session/Delete/ Deletes all sessions passed in by ID.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("Delete")]
public HttpResponseMessage DeleteSessionsById(
	[FromBodyAttribute] GetSessionsOptions options,
	Nullable<Guid> sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.ModelsGetSessionsOptions
An object that carries all needed information about the sessions that need to be deleted.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: HttpResponseMessage
A status code indicating success or the reason for failure.
See Also