Reviews

List Reviews

get

Retrieve project reviews with facet, source, location, score, and tag filters, optional sorting by rating or timestamps, and calendar bounds on a chosen review datetime column.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
date_fromstring · date · nullableOptional

Inclusive lower calendar date (YYYY-MM-DD) for the column chosen by date_key, defaulting to created_at when date_key is omitted.

date_keystring · enum · nullableOptional

Review datetime column paired with date_from and date_to (defaults to created_at when omitted).

Possible values:
date_tostring · date · nullableOptional

Inclusive upper calendar date (YYYY-MM-DD) for the column chosen by date_key; must be on or after date_from when both bounds are provided.

filterstring · enum · nullableOptional

Review list facet aligned with console filters (non-duplicates unless duplicate is selected).

Possible values:
limitinteger · nullableOptional

Maximum number of records to return.

location_idinteger · nullableOptional

Unique numeric identifier for the location.

location_slugstring · nullableOptional

URL-friendly identifier for the location.

location_uuidstring · nullableOptional

Stable UUID for the location.

scoreinteger · min: 1 · max: 5 · nullableOptional

Numeric rating score for the review.

source_idinteger · nullableOptional

Identifier for the source system or review platform.

source_slugstring · nullableOptional

Source slug for this resource.

source_uuidstring · nullableOptional

Source uuid for this resource.

sort_dirstring · enum · nullableOptional

Sort direction applied when sort_key is set (defaults to desc when omitted).

Possible values:
sort_keystring · enum · nullableOptional

Review attribute to sort by; omit to use newest-first by creation time.

Possible values:
tag_slugstring · nullableOptional

URL-friendly identifier for the review tag.

Responses
chevron-right
200

Success

application/json

Object containing response data for this resource.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Short code or application-level status code for this resource.

get
/reviews
200

Success

Delete Review

delete

Remove a review that should no longer be reconciled.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Unique numeric identifier for this resource.

Responses
chevron-right
200

Success

application/json

Object containing response data for this resource.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Short code or application-level status code for this resource.

delete
/reviews/{id}
200

Success

Update Review Visibility

put

Show or hide a review in public displays.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Unique numeric identifier for this review.

Body

Request body containing the desired review visibility flag.

is_hiddenbooleanRequired

Whether this review should be hidden from public displays.

Responses
chevron-right
200

Success

application/json

Object containing response status for the request.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Application-level status code returned by More Good Reviews.

put
/reviews/{id}/flag-hidden
200

Success

Update Review Duplicate Flag

put

Mark whether a review is a duplicate record.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Unique numeric identifier for this review.

Body

Request body containing the desired duplicate flag.

is_duplicatebooleanRequired

Whether this review should be marked as a duplicate.

Responses
chevron-right
200

Success

application/json

Object containing response status for the request.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Application-level status code returned by More Good Reviews.

put
/reviews/{id}/flag-duplicate
200

Success

Update Review Tags

put

Replace the tag assignments for a review using the provided slug list.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Unique numeric identifier for the review.

Body

Request body listing tag slugs to apply; omitting unrelated tags removes them from the review.

tag_slugsstring[]Required

Tag slugs to assign; send an empty array to clear all tags from this review.

Responses
chevron-right
200

Success

application/json

Object containing response status for the request.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Application-level status code returned by More Good Reviews.

put
/reviews/{id}/tags
200

Success

Last updated