AccountControllerGetUserData Method

Gets the user data 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
[HttpGetAttribute("UserData/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<KeyValuePairData[]> GetUserData(
	Guid id,
	Guid? tenantId = null,
	bool isTenantAgnostic = true,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the account to get the user data for.
tenantId (Optional)
Type: SystemNullableGuid
The ID of the tenant. Ignored if isTenantAgnostic is .
isTenantAgnostic (Optional)
Type: SystemBoolean
Specifies whether the tenant-agnostic user data values should be retrieved. If not specified, defaults to .
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: ActionResultKeyValuePairData
An array of KeyValuePairData objects representing the user data.
See Also