ECHO includes two parallel trust mechanisms: a review system that lets buyers rate creators after completed orders, and a formal dispute process for when an engagement does not go as expected. Both systems are designed to keep activity on-platform and give all parties a clear record of what happened.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/HelenaLM32/ECHO/llms.txt
Use this file to discover all available pages before exploring further.
Reviews
After an order is completed, the buyer can submit a review that becomes part of the creator’s public reputation on ECHO.score from 1 to 5 and an optional text comment. The author_id is set automatically from the authenticated session.
Viewing a creator’s reviews
| Endpoint | Returns |
|---|---|
GET /reviews/user/{userId} | All reviews authored about a specific creator |
GET /reviews/user/{userId}/average | The creator’s average review score |
Reviews are tied to orders, not to individual items. A creator’s overall rating reflects the quality of their fulfillment across all engagements, not any single listing.
Opening a dispute
Either party on an order can open a dispute by providing a reason. Disputes are created with a status ofOPEN and remain open until an administrator closes them.
created_by_user_id is set automatically from the authenticated session.
Dispute messaging
Once a dispute is open, both parties can exchange messages within it. This creates a dedicated thread separate from the order’s regular messaging, giving administrators a focused record of the disagreement.dispute_id— which dispute the message belongs touser_id— who sent the messagemessage— the message content
How disputes are resolved
An administrator reviews the full dispute record — the reason, the message thread, and the underlying order — and can add a resolution note before closing the case.closed_at to the current timestamp and marks the dispute as resolved.
Viewing disputes
| Endpoint | Who can access | Returns |
|---|---|---|
GET /disputes/user/my-disputes | Any authenticated user | Your own disputes (as buyer or creator) |
GET /disputes/{disputeId} | Parties to the dispute or admins | Full dispute details including messages |
GET /disputes/open | Admins only | All currently open disputes awaiting review |
Venue and event reviews
ECHO also has a separate review system for physical venues and events — distinct from the order review system described above. Users can rate a venue or an event after visiting, using a score from 1 to 5 with an optional comment. Thetarget_type field specifies whether the review applies to a VENUE or an EVENT, and each user is limited to one review per target.
See Events and Venues for more on how venue and event reviews work in context.
Orders and Payments
Understand the order lifecycle that precedes a review or dispute.
Disputes API
Full reference for opening disputes and managing the resolution process.
Reviews API
Full reference for submitting and querying order reviews.