IAccountServiceWriteUserDataValue Method (Guid, String, String)

Writes a tenant-agnostic user data value for the specified account.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
void WriteUserDataValue(
	Guid accountId,
	string key,
	string value
)

Parameters

accountId
Type: SystemGuid
The ID of the account.
key
Type: SystemString
The case-sensitive data key.
value
Type: SystemString
The data value, or to indicate that the item with the specified key should be removed from the user data
Exceptions
ExceptionCondition
ArgumentException

accountId is Empty.

-or-

key is , empty, or contains only whitespace.

NotFoundExceptionAn account with the specified ID was not found.
InvalidOperationException The account corresponding to the specified ID is an External or Windows Group account.
NoPrivilegeException

accountId does not correspond to the account associated with the caller's session.

-or-

The caller does not have system administration privileges.

-or-

The account is associated with a tenant, and the caller does not have administration privileges for that tenant.

InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also