Entities are not checked for existing duplicate Entities.
Body
The type of the Entity. Must be
individual
Individual information of the Entity.
Show properties
Show properties
The legal first name of the individual Entity.
The legal last name of the individual Entity.
Mobile phone number of the individual Entity in E.164 format. The number will only be used for KYC / AML verification.
The Entity's phone number must be verified before it can be used for creating an Entity.
Email address of the individual Entity. The email will only be used for KYC / AML verification.
The Entity's date of birth in ISO 8601 format.
The last 4 digits of the individual's SSN.
The individual's SSN.
Address information of the Entity.
Show properties
Show properties
The first line of the Entity's address.
The second line of the Entity's address.
The city of the Entity's address.
The two-letter abbreviation for the state of the Entity's address.
The ZIP code of the Entity's address.
Returns
Returns the Entity associated with the ID.Copy
Ask AI
curl https://production.methodfi.com/entities \
-X POST \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
-H "Content-Type: application/json" \
-d '{
"type": "individual",
"individual": {
"first_name": "Kevin",
"last_name": "Doyle",
"phone": "+16505555555",
"email": "kevin.doyle@gmail.com",
"dob": "1997-03-18"
},
"address": {
"line1": "3300 N Interstate 35",
"line2": null,
"city": "Austin",
"state": "TX",
"zip": "78705"
}
}'
Copy
Ask AI
{
"id": "ent_BzirqpLEm3BW7",
"type": "individual",
"individual": {
"first_name": "Kevin",
"last_name": "Doyle",
"phone": "+15121231113",
"dob": "1997-03-18",
"email": "kevin.doyle@gmail.com",
"ssn_4": null,
"ssn": null
},
"error": null,
"address": {
"line1": "3300 N Interstate 35",
"line2": null,
"city": "Austin",
"state": "TX",
"zip": "78705"
},
"status": "incomplete",
"verification": {
"identity": {
"verified": false,
"matched": false,
"latest_verification_session": null,
"methods": [
"element",
"kba"
]
},
"phone": {
"verified": true,
"latest_verification_session": "evf_P4QXNj93Y9J8L",
"methods": []
}
},
"connect": null,
"credit_score": null,
"products": [
"identity"
],
"restricted_products": [
"connect",
"credit_score",
"attribute"
],
"subscriptions": [],
"available_subscriptions": [
"connect",
"credit_score"
],
"restricted_subscriptions": [],
"metadata": null,
"created_at": "2023-10-24T21:50:53.024Z",
"updated_at": "2023-10-24T21:50:53.024Z"
}