Identities
Create Identities
API Reference
Entities
- The entity endpoint
- POSTCreate an Individual
- POSTCreate a Corporation
- PUTUpdate an Entity
- GETRetrieve an Entity
- GETList all Entities
- Connect
- Verification Sessions
- Credit Scores
- Attributes
- Vehicles
- Identities
- Products
- Subscriptions
- Consent
Accounts
- The account endpoint
- POSTCreate an Account
- GETRetrieve an Account
- GETList all Accounts
- Updates
- Transactions
- Card Brand
- Attributes
- Payoffs
- Balances
- Sensitive
- Products
- Subscriptions
- Verification Sessions
- Consent
Payments
Supporting Endpoints
- Merchants
- Webhooks
- Reports
- Simulations (Dev)
- Health Check
Identities
Create Identities
POST
/
entities
/
:ent_id
/
identities
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/identities \
-X POST \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"id": "idn_NhTRUVEknYaFM",
"entity_id": "ent_au22b1fbFJbp8",
"status": "completed",
"identities": [
{
"first_name": "KEVIN",
"last_name": "DOYLE",
"dob": "1997-03-18",
"ssn": "111223333",
"phone": "+16505551115",
"address": {
"address": "3300 N INTERSTATE 35",
"city": "AUSTIN",
"postal_code": "78705",
"state": "TX"
}
}
],
"error": null,
"created_at": "2024-01-16T19:36:08.263Z",
"updated_at": "2024-01-16T19:36:08.263Z"
}
Creates a new Identity request to retrieve the identity of an Entity, based off the PII that has been passed in to Method so far.
Operation Type:
Path Parameters
The ID of the Entity.
Returns
Returns an object.
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/identities \
-X POST \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"id": "idn_NhTRUVEknYaFM",
"entity_id": "ent_au22b1fbFJbp8",
"status": "completed",
"identities": [
{
"first_name": "KEVIN",
"last_name": "DOYLE",
"dob": "1997-03-18",
"ssn": "111223333",
"phone": "+16505551115",
"address": {
"address": "3300 N INTERSTATE 35",
"city": "AUSTIN",
"postal_code": "78705",
"state": "TX"
}
}
],
"error": null,
"created_at": "2024-01-16T19:36:08.263Z",
"updated_at": "2024-01-16T19:36:08.263Z"
}
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/identities \
-X POST \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"id": "idn_NhTRUVEknYaFM",
"entity_id": "ent_au22b1fbFJbp8",
"status": "completed",
"identities": [
{
"first_name": "KEVIN",
"last_name": "DOYLE",
"dob": "1997-03-18",
"ssn": "111223333",
"phone": "+16505551115",
"address": {
"address": "3300 N INTERSTATE 35",
"city": "AUSTIN",
"postal_code": "78705",
"state": "TX"
}
}
],
"error": null,
"created_at": "2024-01-16T19:36:08.263Z",
"updated_at": "2024-01-16T19:36:08.263Z"
}