Enables scripted content fragments to use Group Author Quality Scores
Properties
Name | Access | Type | Description |
---|---|---|---|
ScoreId | Read | Guid | Id of Score suitable for usage within Score:SCORE_ID sort parameters |
Methods
ListWhereInTopThreshold
ListWhereInTopThreshold Overload 1
Lists Groups where a user is within a threshold of top users of that group according to the Group Author Quality score
Velocity
#set($pagedListResponse = $core_v2_groupAuthorQualityScore.ListWhereInTopThreshold($userId, "%{ PageIndex = $pageIndexArg, PageSize = $pageSizeArg, Threshold = $thresholdArg }"))
JavaScript
var pagedListResponse = core_v2_groupAuthorQualityScore.ListWhereInTopThreshold(userId, { PageIndex: pageIndexArg, PageSize: pageSizeArg, Threshold: thresholdArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
userId | Int32 | User Id | Required | ||
options | Options | Set of optional parameters including: | Required | ||
PageIndex | Int32 | Specify the page number of paged results to return. Zero-based index. | Optional | 0 | |
PageSize | Int32 | Specify the number of results to return per page. | Optional | 20 | |
Threshold | Int32 | Threshold by which to filter groups where the user is a top author | Optional | 10 |
ListWhereInTopThreshold Overload 2
Lists Groups where a user is within a threshold of top users of that group according to the Group Author Quality score
Velocity
#set($pagedListResponse = $core_v2_groupAuthorQualityScore.ListWhereInTopThreshold($userId))
JavaScript
var pagedListResponse = core_v2_groupAuthorQualityScore.ListWhereInTopThreshold(userId);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
userId | Int32 | User Id | Required |