curl -X POST https://api.telnyx.com/v2/enterprises \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"legal_name": "Acme Corp",
"doing_business_as": "Acme",
"organization_type": "commercial",
"country_code": "US",
"website": "https://acme.com",
"fein": "12-3456789",
"industry": "technology",
"number_of_employees": "51-200",
"organization_legal_type": "corporation",
"organization_contact": {
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@acme.com",
"job_title": "CTO",
"phone": "+12025551234"
},
"billing_contact": {
"first_name": "Jane",
"last_name": "Smith",
"email": "billing@acme.com",
"phone_number": "+12025551234"
},
"organization_physical_address": {
"country": "US",
"administrative_area": "CA",
"city": "San Francisco",
"postal_code": "94105",
"street_address": "123 Main St"
},
"billing_address": {
"country": "US",
"administrative_area": "CA",
"city": "San Francisco",
"postal_code": "94105",
"street_address": "123 Main St"
}
}'