Verification Outcomes
Understanding Verification Outcomes: Matched vs. Verified
Method distinguishes between two verification states, and understanding the difference matters:| State | Meaning | Unlocks products? |
|---|---|---|
| Neither matched nor verified | Entity created, not yet verified | No |
| Matched only | Method identified the person, but they haven’t proven identity | No |
| Matched + Verified | Full identity confirmation complete | Yes |
How Matching Works
When you create or update an Entity with PII (name, DOB, SSN, address, phone), Method attempts to correlate that information against its identity records. If the PII matches a known identity, the Entity becomesmatched. This happens automatically when the Entity’s PII is processed — you don’t call a separate endpoint for matching.
The Entity’s matched status is then checked when you create an identity verification session. If the Entity is not yet matched, the session creation will fail with MISSING_IDENTITY_MATCH.
Matching can fail if:
- The PII is incomplete (name + phone only, no DOB or SSN)
- The PII has typos or formatting issues
- The person has a thin file (limited credit/identity history)
When Matching Fails
If Method cannot match the Entity’s PII to a known identity, creating an identity verification session will return aMISSING_IDENTITY_MATCH error. Your options:
- Collect more PII: Update the Entity with additional fields (DOB, SSN, address) and retry. More PII dramatically improves match rates.
- Verify the data: Check for typos, name variations (maiden names, Jr/Sr suffixes), or incorrect phone numbers.
Checking Verification Status
The Entity object includes averification field that reflects the current state:
methods arrays will contain the available verification methods for that step (e.g., ["sms", "sna"] for phone, ["kba"] for identity). Once a step is completed, its methods array becomes empty.
Use these fields to determine what actions are available for the Entity. See the Entity API Reference for full field documentation.
Maximizing Success
Improve match rates through better data collection.
Verification Sessions API
Full API reference for verification session endpoints.