v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-313352,3122.9 MB
plaid

Create a review for an individual watchlist screening

Create a review for the individual watchlist screening. Reviews are compliance reports created by users in your organization regarding the relevance of potential hits found by Plaid.

post/watchlist_screening/individual/review/create

Request body

confirmed_hitsWatchlistScreeningHitID[] required

Hits to mark as a true positive after thorough manual review. These hits will never recur or be updated once confirmed. In most cases, confirmed hits indicate that the customer should be rejected.

dismissed_hitsWatchlistScreeningHitID[] required

Hits to mark as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.

commentstring nullable

A comment submitted by a team member as part of reviewing a watchlist screening.

client_idstring

Your Plaid API client_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.

secretstring

Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.

watchlist_screening_idstring required

ID of the associated screening.

Example request

{
  "confirmed_hits": [
    "scrhit_52xR9LKo77r1Np"
  ],
  "dismissed_hits": [
    "scrhit_52xR9LKo77r1Np"
  ],
  "comment": "These look like legitimate matches, rejecting the customer.",
  "watchlist_screening_id": "scr_52xR9LKo77r1Np"
}

Response

OK

idstring required

ID of the associated review.

confirmed_hitsWatchlistScreeningHitID[] required

Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once confirmed. In most cases, confirmed hits indicate that the customer should be rejected.

dismissed_hitsWatchlistScreeningHitID[] required

Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.

commentstring nullable required

A comment submitted by a team member as part of reviewing a watchlist screening.

request_idstring required

A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

Example response

{
  "id": "rev_aCLNRxK3UVzn2r",
  "confirmed_hits": [
    "scrhit_52xR9LKo77r1Np"
  ],
  "dismissed_hits": [
    "scrhit_52xR9LKo77r1Np"
  ],
  "comment": "These look like legitimate matches, rejecting the customer.",
  "audit_trail": {
    "dashboard_user_id": "54350110fedcbaf01234ffee",
    "timestamp": "2020-07-24T03:26:02Z"
  }
}