curl --request POST \
--url https://api.sandbox.bitwage.com/api/companies \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"legal_name": "<string>",
"email": "jsmith@example.com",
"tax_country": "<string>",
"tax_id": "<string>",
"regulatory_aml": "<string>",
"website_url": "<string>",
"company_type": "<string>",
"source_funds": "<string>",
"street_address": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>",
"dba": "<string>",
"tax_state": "<string>",
"street_address_2": "<string>"
}
'