put https://api.paymongo.com/v1/fraud/reviews/
Use secret API key to approves a Reviews
resource.
Approves and closes a specific Review resource identified by its ID. Once approved, the review is marked as closed and removed from the active review queue. This action indicates that a human reviewer has assessed the flagged transaction and determined it to be legitimate or otherwise safe to proceed. The endpoint updates the review’s status and records the approval timestamp. Use this to streamline manual approval processes, automate safe-listing transactions, or integrate review decisions into your business logic.
Example Response:
{
"id": "frr_abcdefg123456",
"type": "fraud.review",
"score": 535,
"risk_level": "medium",
"organization_id": "org_abcdefg123456",
"payment_intent_id": "pi_abcdefg123456",
"livemode": true,
"closed": true,
"reason": "rule",
"rule_id": "frl_abcdefg123456",
"opened_reason": "rule",
"closed_reason": null,
"created_at": "2025-06-27T01:46:09.314Z",
"updated_at": "2025-06-28T01:46:09.314Z"
}
The closed
field will be true
and updated_at
will reflect the approval time.
See attribute details on List all reviews.