- React in real time when Radar opens a review on one of your charges.
- Take the right action when a review is closed (approved, refunded, fraud, disputed).
- Build a “Reviews queue” view for your fraud-ops team using the Flex REST API.
- Join reviews back to your own order IDs without maintaining an extra mapping.
- Verify the entire flow against test mode before shipping to production.
What is a review? A review is a Stripe Radar fraud-review record surfaced through Flex. When Radar flags one of your charges — either via a Radar rule or a manual review action in Stripe — Flex persists the review and notifies you via a webhook event and via a queryable record on the Flex REST API. A review is open while the decision is pending, and closed once it has been resolved (approved, refunded, marked as fraud, disputed, or redacted).
Before you begin
Make sure you have:- A Flex API key with the
reviews:readscope. Add it to an existing key in the Flex dashboard, or include it when minting a new key. - A webhook endpoint registered with Flex that can receive
review.openedandreview.closedevents. - (Recommended)
client_reference_idset on yourPOST /v1/checkout/sessionscalls — this is the single highest-leverage change you can make for joining reviews back to your internal order IDs.
Reviews are read-only in Flex. Approving a review must be done in the Stripe dashboard — there is no
POST /v1/reviews/:id/approve endpoint.How the flow works
Before wiring anything up, here is the lifecycle you are integrating against:1
Stripe Radar opens a review
Triggered by a Radar rule firing, or by a teammate opening a manual review in the Stripe dashboard.
2
Stripe fires `review.opened`
The event flows to Flex via Stripe’s webhook pipeline.
3
Flex resolves the charge and persists the review
Flex assigns a
frv_… ID and stores the record.4
You receive the event in two places
A
review.opened webhook is forwarded to your endpoint, and GET /v1/reviews immediately returns the new record.5
The review is resolved in Stripe
Someone refunds, approves, accepts the dispute, or redacts the review.
6
Stripe fires `review.closed`
Flex updates the record:
open=false and closed_reason is set.7
You receive the close
A
review.closed webhook is forwarded, and GET /v1/reviews/:id reflects the new state.Step 1 — Subscribe to the webhook events
In your Flex webhook configuration, subscribe to:review.openedreview.closed
review.opened payload looks like this:
review.opened
review.closed payload adds closed_reason and flips open to false:
review.closed
Verify the webhook signature
Flex signs every outbound webhook so you can confirm it actually came from Flex. The canonical delivery path uses Svix and includessvix-id, svix-timestamp, and svix-signature headers — see the Verifying Webhooks guide for the full verification flow and SDK examples.
Make your handler idempotent
Stripe and Flex both retry webhooks. Your handler should be safe to invoke twice with the same payload.Step 2 — Handle review.opened
When a review opens, the charge is still captured but Stripe (or your own ops team) has flagged it for human review. You usually want to pause downstream side effects until the review resolves.
A typical handler:
- Look up the order in your system using
object.review.client_reference_id(or fall back topayment_intent_id). - If the order has not yet shipped or been provisioned, hold fulfilment until the review closes.
- Optionally surface the review in your internal admin tool so an ops person can investigate.
Step 3 — Handle review.closed
When you receive a review.closed, branch on closed_reason and take the matching action:
Step 4 — Build a “Reviews queue” view
Webhooks tell you what just happened, but for an ops dashboard you also want to ask “what is open right now?” Use the REST API for this.Authenticate
List open reviews
Poll for everything currently in review:- See which orders are currently in review.
- Click through to the corresponding charge / order in your admin tools.
- Identify reviews that have been open unusually long.
GET /v1/reviews?open=false filtered by date for a historical audit log.
Paginate through the results
Reviews are returned newest-first as a flat array — there is nohas_more field.
limit items, you have reached the end. Use ending_before for backward pagination.
Available filters
Audit a single review
When you need to look up one review by Flex ID:Response
Handle errors
Step 5 — Join reviews to your order IDs
The cleanest way to tie a review back to your own system is viaclient_reference_id. Set it on the checkout session when you create it:
Step 6 — Test the integration end-to-end
Stripe does not open reviews on standard test card payments. Use one of the methods below to generate a review event end-to-end.
Method A — stripe trigger
If you have the Stripe CLI authenticated against your Stripe test account, fire a synthetic event:
review.opened to your endpoint.
Then verify the review landed in Flex:
frv_… ID.
Method B — Synthetic webhook (local development)
For local development againstlocalhost, send a signed synthetic Stripe webhook directly to your Flex server. The event differences for Reviews:
Example
data.object for a review.opened:
review.closed, set open: false, reason: "refunded_as_fraud", and closed_reason: "refunded_as_fraud". Keep the same id so Flex upserts onto the existing record rather than creating a new one.
Verification checklist
Walk through these scenarios before considering your integration done:Reference
The review object
string
Flex review ID (
frv_ prefix). Use this in REST calls.string | null
Flex charge ID (
fch_) for the reviewed transaction.string | null
Flex payment intent ID (
fpi_) linked to the charge.string
Flex partner that owns the review.
string
Current high-level reason. Tracks
opened_reason while open; tracks closed_reason once closed.string
Why the review was opened. One of
rule, manual.string | omitted
Why the review was closed. Present only when
open: false. One of approved, disputed, redacted, refunded, refunded_as_fraud.boolean
true while the review is pending. false once resolved.string | null
Billing ZIP captured at payment, when present.
string | null
IP address captured at payment, when present.
string | null
The
client_reference_id you set on the underlying checkout session.boolean
true for test-mode reviews.string
ISO 8601 timestamp when Flex first persisted the review.
Reason codes
opened_reason
closed_reason (set once open: false)
Reviews vs. Early Fraud Warnings
A single charge may have both a review and an EFW. They are independent signals — subscribe to both for full visibility.What is not forwarded
- Stripe reviews that have no associated charge are silently dropped (no DB write, no webhook). This is rare but possible during certain failure modes.
- Reviews on charges belonging to partners not onboarded to Flex are not forwarded.