curl --request POST \
--url https://api.trysynch.com/Company/Create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"companyReferenceId": "<string>",
"name": "<string>",
"emailAddress": "<string>",
"taxId": "<string>",
"taxIdType": "<string>",
"streetNumberAndName": "<string>",
"apartmentNumber": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"contactNumber": "<string>",
"websiteUrl": "<string>",
"owner": {
"name": "<string>",
"emailAddress": "<string>",
"contactNumber": "<string>",
"title": "<string>",
"documentNumber": "<string>",
"documentType": "<string>"
},
"employees": [
{
"name": "<string>",
"emailAddress": "<string>",
"contactNumber": "<string>",
"title": "<string>"
}
]
}'