ShortLinkControllerDeleteForgottenShortLinks Method

POST /ShortLink/DeleteForgotten Deletes short links whose "last accessed time" is before the specified date.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (8.0.2.1001)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("DeleteForgotten")]
public HttpResponseMessage DeleteForgottenShortLinks(
	[FromBodyAttribute] DateTime thresholdDate,
	Nullable<Guid> sessionId = null
)

Parameters

thresholdDate
Type: SystemDateTime
The threshold date.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: HttpResponseMessage
A Int32 with the number of short links deleted, or a status code indicating the problem.
See Also