v51

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

(Deprecated) Get a Beacon Duplicate

Returns a Beacon Duplicate for a given Beacon Duplicate id.

A Beacon Duplicate represents a pair of similar Beacon Users within your organization.

Two Beacon User revisions are returned for each Duplicate record in either the beacon_user1 or beacon_user2 response fields.

The analysis field in the response indicates which fields matched between beacon_user1 and beacon_user2.

post/beacon/duplicate/get

Request body

beacon_duplicate_idstring required

ID of the associated Beacon Duplicate.

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.

Example request

{
  "beacon_duplicate_id": "becdup_11111111111111"
}

Response

OK

idstring required

ID of the associated Beacon Duplicate.

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": "becdup_11111111111111",
  "beacon_user1": {
    "id": "becusr_42cF1MNo42r9Xj",
    "version": 1
  },
  "beacon_user2": {
    "id": "becusr_42cF1MNo42r9Xj",
    "version": 1
  },
  "analysis": {
    "address": "match",
    "date_of_birth": "match",
    "email_address": "match",
    "name": "match",
    "id_number": "match",
    "ip_address": "match",
    "phone_number": "match"
  }
}