- Compatible XF Versions
- 2.1
- 2.2
- License
- Single Use License (may be used on one website) License Agreement
- Updates Duration
- Lifetime for Xenforo versions listed above What are lifetime updates?
User rating system
Features:





Features:
- BB-code support
- Attachment support
- Approval queue support
- Member stats support (reputation score & positive rate count)
- Inline moderation
Table of Contents
Routes- user-ratings
- GET user-ratings/
- POST user-ratings/
- GET user-ratings/{id}/
- POST user-ratings/{id}/
- DELETE user-ratings/{id}/
Routes
user-ratings
GET user-ratings/
Gets the API list of user reputation ratings.Inputs | Type | Description |
---|---|---|
None. |
Outputs | Type | Description |
---|---|---|
ratings | Rating[] | |
pagination | pagination |
POST user-ratings/
Creates a new user reputation rating.Inputs | Type | Description |
---|---|---|
user_id | integer | [req] The ID of the user whose profile this will be rated. |
score | integer | |
message | string | [req] |
attachment_key | string | API attachment key to upload files. Attachment key context type must be pb_ur_rating with context[rated_user_id] set to this user ID. |
Outputs | Type | Description |
---|---|---|
success | true | |
rating | Rating |
GET user-ratings/{id}/
Gets information about the specified user reputation ratingInputs | Type | Description |
---|---|---|
None. |
Outputs | Type | Description |
---|---|---|
rating | Rating |
POST user-ratings/{id}/
Updates the specified user reputation ratingInputs | Type | Description |
---|---|---|
message | string | |
silent | bool | If true and permissions allow, this edit will not be updated with a "last edited" indication |
clear_edit | bool | If true and permissions allow, any "last edited" indication will be removed. Requires "silent". |
author_alert | bool | |
author_alert_reason | string | |
attachment_key | string | API attachment key to upload files. Attachment key context type must be pb_ur_rating with context[rating_id] set to this rating ID. |
Outputs | Type | Description |
---|---|---|
success | true | |
rating | Rating |
DELETE user-ratings/{id}/
Deletes the specified user reputation rating.Inputs | Type | Description |
---|---|---|
hard_delete | bool | |
reason | string | |
author_alert | bool | |
author_alert_reason | string |
Outputs | Type | Description |
---|---|---|
success | true |
Types




