FleetbaseFleetbase

Reviews

Reviews capture customer ratings and feedback for storefront resources. Use review endpoints to create, retrieve, count, query, and remove customer feedback.

The Review object

A review stores a customer rating, written content, photos, and the reviewed subject.
Attributes
idstringoptional

Public identifier of the review.

subject_idstringoptional

Identifier of the reviewed subject.

ratingintegeroptional

Numeric review rating.

contentstringoptional

Review text.

customerobjectoptional

Customer that created the review.

slugstringoptional

URL-friendly review slug.

photosarray of objectsoptional

Photos attached to the review.

created_attimestampoptional

Time the review was created.

updated_attimestampoptional

Time the review was last updated.

The Review object
{
  "id": "review_2xK9mQ1",
  "subject_id": "store_3Xb9kL2",
  "rating": 5,
  "content": "Great pickup experience.",
  "customer": null,
  "slug": "great-pickup-experience",
  "photos": [],
  "created_at": "2026-05-07T09:30:00Z",
  "updated_at": "2026-05-07T09:30:00Z"
}
GET/v1/reviews

Query Reviews ❗

Query Reviews ❗

Query parameters
limitstringoptional

Limit value for this reviews request.

offsetstringoptional

Offset value for this reviews request.

sortstringoptional

Sort value for this reviews request.

GET/v1/reviews
curl https://api.fleetbase.io/v1/reviews?limit=&offset=&sort= \
  -H "Authorization: Bearer flb_live_…"
POST/v1/reviews

Create a review

Create a review

Body parameters
contentstringoptional

Text content for the comment or message.

ratingintegeroptional

Rating value for this reviews request.

POST/v1/reviews
curl -X POST https://api.fleetbase.io/v1/reviews \
  -H "Authorization: Bearer flb_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "content": "",
  "rating": 5
}'
GET/v1/reviews/count

Counts the number of ratings for a store

Counts the number of ratings for a store

GET/v1/reviews/count
curl https://api.fleetbase.io/v1/reviews/count \
  -H "Authorization: Bearer flb_live_…"
GET/v1/reviews/{id}

Retrieve a Store review

Retrieve a Store review

GET/v1/reviews/{id}
curl https://api.fleetbase.io/v1/reviews/{id} \
  -H "Authorization: Bearer flb_live_…"
DELETE/v1/reviews/{id}

Delete a Review

Delete a Review

DELETE/v1/reviews/{id}
curl -X DELETE https://api.fleetbase.io/v1/reviews/{id} \
  -H "Authorization: Bearer flb_live_…"
Reviews | Fleetbase