curl --request POST \
--header 'accept: application/json; charset=utf-8' \
--header 'Idempotency-Key: <unique-request-id>' \
--header 'x-api-key: <your-api-key>' \
--url 'https://api.sandbox.iron.xyz/api/customers/<customer_id>/identifications/v2' \
--data-raw '{
"type": "Business",
"company_name": "Acme Corp",
"registration_number": "HRB 123456",
"country": "US",
"incorporation_date": "2021-01-15",
"legal_address": "123 Commerce St, Suite 100, Anytown, CA 12345",
"postal_address": "PO Box 456, Anytown, CA 12345",
"email": "[email protected]",
"phone": "+12125559876",
"tax_identification_number": "12-3456789",
"website": "https://www.acmecorp.com",
"company_type": "LimitedLiabilityCompany",
"address": {
"street_1": "123 Commerce St",
"street_2": "Suite 100",
"city": "Anytown",
"state": "CA",
"zip_code": "12345",
"country": "US"
},
"beneficiaries": [
{
"roles": ["UltimateBeneficialOwner", "Director"],
"share_percentage": "50.00",
"beneficiary_info": {
"first_name": "John",
"last_name": "Smith",
"date_of_birth": "1990-01-01",
"email_address": "[email protected]",
"phone_number": "+12125551234",
"identity_country_code": "US",
"nationality_country_code": "US",
"tax_jurisdiction_country_code": "US",
"birth_place": {
"place": "Anytown",
"state": "CA",
"country": "US"
},
"address": {
"street_1": "456 Elm St",
"city": "Anytown",
"state": "CA",
"zip_code": "12345",
"country": "US"
}
}
}
],
"documents": [
{
"type": "IncorporationCert",
"country": "US",
"file": "<base64-encoded-document>"
},
{
"type": "ShareholderRegistry",
"country": "US",
"file": "<base64-encoded-document>"
}
],
"questionnaire": {
"planned_activities": {
"purpose_and_intended_use": "ReceivingBusinessIncome",
"estimated_monthly_volume": "FiftyToOneHundredThousand",
"estimated_monthly_transactions": "TenToTwentyFive",
"sends_funds_on_customer_behalf": false
},
"source_of_funds": {
"source_of_funds": "BusinessRevenue"
},
"business_details": {
"industry_type": "InformationTechnologyAndSoftware",
"business_model_description": "SaaS platform providing analytics tools to enterprise clients",
"main_business_countries": ["US", "GB"],
"has_licenses_or_registrations": true,
"requires_licenses_or_registrations": false
}
}
}'