curl -i -X POST \
'https://docs.fluid.app/_mock/docs/apis/swagger/api/companies/{company_id}/entities' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"entity": {
"legal_name": "Acme Corporation Inc.",
"classification": "Corporation",
"trading_name": "Acme Corp",
"country_iso": "US",
"address1": "123 Business Street",
"address2": "Suite 100",
"city": "New York",
"province": "NY",
"postal_code": "10001",
"registration_number": "123456789",
"date_of_incorporation": "2020-01-15",
"primary_mcc": 5411,
"secondary_mcc": 5999,
"phone_country_code": "+1",
"phone": "555-123-4567",
"website": "https://acme.com",
"principal_same_as_registered_address": true,
"principal_address": {
"id": 1,
"address1": "123 Business Street",
"address2": "Suite 100",
"address3": "Building A",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"subdivision_code": "NY"
},
"registered_address": {
"id": 1,
"address1": "123 Business Street",
"address2": "Suite 100",
"address3": "Building A",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"subdivision_code": "NY"
}
}
}'