Open this page in the API Guide

AccountController.UpdateCustomAttributesForAccount Method

Updates the custom attributes 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
[HttpPostAttribute("UpdateCustomAttributesForAccount/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<AccountData> UpdateCustomAttributesForAccount(
	Guid id,
	[FromBodyAttribute] IList<CustomAttributeData> customAttributes,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The account ID to be updated.
customAttributes
Type: System.Collections.Generic.IList<CustomAttributeData>
The list of CustomAttributeData objects to be updated.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

Type: ActionResult<AccountData>
The operation completed successfully. The payload contains an AccountData object representing the current state of the account.
See Also