v1
latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KBIndividual Onboarding V2
Initiate Individual Account
post/v2/accounts/{main_account_id}/individuals
Path parameters
main_account_idstring required
Main customer account ID
Headers
Idempotency-Keystring required
Idempotency key identifying this individual onboarding create request
Request body
Example request
{
"external_id": "partner-user-12345",
"terms": [
{
"signed_at": "2026-03-17T15:04:05Z",
"signature_id": "8e55f5a7-6f66-4a1f-b104-f90b2c8af5df"
}
],
"contact": {
"email": "jane.doe@example.com",
"phone": {
"country_code": "+1",
"number": "4155551234"
}
},
"person": {
"first_name": "Jane",
"last_name": "Doe",
"dob": "1990-01-15"
},
"residential_address": {
"street_line_1": "123 Main Street",
"street_line_2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"postal_code": "94102"
},
"tax_info": {
"number": "123-45-6789"
},
"identification": {
"id_number": "P12345678",
"issued_at": "2020-01-01",
"expires_at": "2030-01-01"
}
}Response
Individual created successfully.
Example response
{
"external_id": "partner-user-12345",
"terms": [
{
"url": "https://www.1money.com/legal-and-privacy/privacy-policy",
"name": "Privacy Policy"
}
],
"contact": {
"email": "jane.doe@example.com",
"phone": {
"country_code": "+1",
"number": "4155551234"
}
},
"person": {
"first_name": "Jane",
"last_name": "Doe",
"dob": "1990-01-15"
},
"residential_address": {
"street_line_1": "123 Main Street",
"street_line_2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"postal_code": "94102"
},
"tax_info": {
"number": "123-45-6789"
},
"identification": {
"id_number": "P12345678",
"issued_at": "2020-01-01",
"expires_at": "2030-01-01"
},
"errors": [
{
"type": "FIELD_VALIDATION",
"description": "Invalid value for field 'industry'.",
"target": {
"scope": "BUSINESS",
"data": {
"controller_id": "8d3e45fa-b76c-45e2-abd1-aa9d29d20964",
"intermediary_id": "0c8b9d1e-3f4a-4b2c-9d8e-1a2b3c4d5e6f",
"property": "industry",
"document_type": "CERT_OF_INC"
}
}
}
],
"created_at": "2026-06-11T00:00:00Z",
"updated_at": "2026-06-11T00:00:00Z"
}