curl --location 'https://api.nuvion.dev/business-entities' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{$NUVION_API_KEY}}' \
--data-raw '{
"name": "Acme Corporation",
"parent_relationship": "subsidiary",
"business": {
"website": "https://acmecorp.com",
"trade_name": "Acme",
"type": "LLC",
"industry": "Technology",
"legal_name": "Acme Corporation LLC",
"registration_number": "REG123456789",
"description": "A leading provider of innovative technology solutions",
"incorporation_meta": {
"year": 2020,
"month": 4,
"country": "US",
"state": "California"
}
},
"address": {
"line_1": "123 Tech Drive",
"line_2": "Suite 500",
"country_code": "US",
"city": "San Francisco",
"state": "California",
"postal_code": "94105"
},
"business_officers": [
{
"is_control_person": true,
"is_beneficial_owner": true,
"ownership_percentage": 60,
"job_title": "Chief Executive Officer",
"person": {
"first_name": "Jane",
"last_name": "Smith",
"middle_name": "Marie",
"date_of_birth": "1985-05-15",
"email": "[email protected]",
"nationality": "US",
"gender": "f",
"address": {
"line_1": "456 Oak Street",
"line_2": "Apt 303",
"country_code": "US",
"city": "San Francisco",
"state": "California",
"postal_code": "94107"
},
"identification": {
"drivers_license": {
"number": "DL123456789",
"issuing_country": "US",
"issue_date": "2018-01-15",
"expiry_date": "2026-01-14",
"urls": {
"main": "https://storage.example.com/documents/dl-front-123.jpg",
"back": "https://storage.example.com/documents/dl-back-123.jpg"
}
}
}
}
},
{
"is_control_person": false,
"is_beneficial_owner": true,
"ownership_percentage": 40,
"job_title": "Chief Financial Officer",
"person": {
"first_name": "Michael",
"last_name": "Johnson",
"date_of_birth": "1982-09-23",
"email": "[email protected]",
"nationality": "US",
"gender": "m",
"address": {
"line_1": "789 Pine Avenue",
"country_code": "US",
"city": "San Francisco",
"state": "California",
"postal_code": "94109"
},
"identification": {
"national_id": {
"type": "SSN",
"value": "123-45-6789",
"urls": {
"main": "https://storage.example.com/documents/ssn-123.jpg"
}
}
}
}
}
]
}'