v51

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

Create autofill for an Identity Verification

Try to autofill an Identity Verification based on the provided phone number, date of birth and country of residence.

post/identity_verification/autofill/create

Request body

identity_verification_idstring required

ID of the associated Identity Verification attempt.

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

{
  "identity_verification_id": "idv_52xR9LKo77r1Np"
}

Response

OK

status'success' | 'failed' required

A status enum indicating whether autofill succeeded or failed.

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

{
  "status": "success",
  "user": {
    "name": {
      "given_name": "Leslie",
      "family_name": "Knope"
    },
    "address": {
      "street": "123 Main St.",
      "street2": "Unit 42",
      "city": "Pawnee",
      "region": "IN",
      "postal_code": "46001",
      "country": "US",
      "po_box": "yes",
      "type": "residential"
    },
    "id_number": {
      "value": "123456789",
      "type": "us_ssn"
    }
  }
}