AccountController.ClearExternalGroupCache Method |
Clears the external group cache for the specified account.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
[HttpPostAttribute("ClearExternalGroupCache")]
public ActionResult ClearExternalGroupCache(
[FromBodyAttribute] Guid id,
Guid? sessionId = null
)
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
<HttpPostAttribute("ClearExternalGroupCache")>
Public Function ClearExternalGroupCache (
<FromBodyAttribute> id As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
[HttpPostAttribute(L"ClearExternalGroupCache")]
ActionResult^ ClearExternalGroupCache(
[FromBodyAttribute] Guid id,
Nullable<Guid> sessionId = nullptr
)
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
[<HttpPostAttribute("ClearExternalGroupCache")>]
member ClearExternalGroupCache :
[<FromBodyAttribute>] id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the account. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult
See Also