AccountControllerWriteUserData Method

POST /Account/UserData/{id} Writes user data in the account.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("UserData")]
public IActionResult WriteUserData(
	Guid id,
	[FromBodyAttribute] WriteUserDataOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the account to have the user data modified.
options
Type: Dundas.BI.WebApi.ModelsWriteUserDataOptions
The options to write the user data.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

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