country se determina automáticamente desde el campo currency.currency en el payloadbusiness_name: string, máximo 140 caracteres (nombre del negocio)registration_number: string, máximo 140 caracteres (número de registro)country_of_issuance: string (país de emisión)display_name: string, máximo 140 caracteresreference: string, máximo 36 caracteres (referencia del cliente)relationship_type: string (tipo de relación)registration_date: date (formato YYYY-MM-DD) o nullissuance_authority: string o nullregulatory_licenses: array de strings (licencias regulatorias)name: string (legacy, se usa business_name si no se proporciona)address es obligatorio con country_code (2 chars) y line_1 (max 50 chars)currency es obligatorio y debe contener currency='usd', industry_code (6 chars NAICS), y tax_number (1-100 chars)relationship (formato legacy): objeto con type ('direct' o 'indirect'). Si type es 'indirect', parent_customer_id es requeridocurl --location --request POST '/fuse/customers/businesses' \
--header 'X-API-Key: {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"payload": {
"business_name": "Acme Corporation",
"registration_number": "REG-123456",
"registration_date": "2020-01-15",
"country_of_issuance": "US",
"issuance_authority": "State of Delaware",
"display_name": "Acme Corporation",
"reference": "CUST-BIZ-12345",
"relationship_type": "direct",
"regulatory_licenses": [
"banking",
"payments"
],
"address": {
"country_code": "US",
"line_1": "123 Main Street",
"line_2": "Suite 100"
},
"currency": {
"currency": "usd",
"industry_code": "541511",
"ip_address": "192.168.1.1",
"tax_number": "12-3456789"
},
"relationship": {
"type": "direct"
}
}
}'{}