curl --request POST \
--url https://api.getenso.ai/customers/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"entity": {
"legalName": "<string>",
"alias": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"cc": "<string>",
"bcc": "<string>",
"address": {
"address": "<string>",
"city": "<string>",
"zip": "<string>",
"StateId": "<string>",
"taxId": "<string>"
},
"attributes": [
{
"key": "<string>",
"value": "<string>",
"isIdentifier": true
}
]
}
}'