get https://api.paymongo.com/v1/fraud/reviews/
Use secret API key to returns a single Review
resource..
Beta testing phaseThis is not the final version of the product, and is still subject to change.
If you are interested in early access to this feature, please contact [email protected]!
Retrieves the details of a single Review resource identified by its unique ID. This endpoint provides all relevant data about the review, including its creation date, current status (open/closed), risk assessment, the rule that triggered the review, and references to the related transaction (payment intent). Use this endpoint to show in-depth information to fraud analysts or to build workflows for investigating and resolving individual flagged payments.
Example Response:
{
"data": {
"id": "frr_abcdefg123456",
"type": "fraud.review",
"score": 535,
"risk_level": "medium",
"organization_id": "org_abcdefg123456",
"payment_intent_id": "pi_abcdefg123456",
"livemode": true,
"closed": false,
"reason": "rule",
"rule_id": "frl_abcdefg123456",
"opened_reason": "rule",
"closed_reason": null,
"created_at": "2025-06-27T01:46:09.314Z",
"updated_at": null
}
}
See attribute details on List all reviews