GroupControllerUpdateCustomAttributesForGroup Method

Updates the custom attributes for the specified group.

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("UpdateCustomAttributesForGroup/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<GroupData> UpdateCustomAttributesForGroup(
	Guid id,
	[FromBodyAttribute] IList<CustomAttributeData> customAttributes,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The group ID to be updated.
customAttributes
Type: System.Collections.GenericIListCustomAttributeData
The list of CustomAttributeData objects to be updated.
sessionId (Optional)
Type: SystemNullableGuid
The current session ID.

Return Value

Type: ActionResultGroupData
The operation completed successfully. The payload contains a GroupData object.
See Also