curl --request POST \
--url https://sandbox.hurdlr.com/rest/v5/clientMgmt/business \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: */*' \
--data '
{
"business": {
"name": "<string>",
"bizType": "CONSULTANT",
"id": 123,
"firstName": "<string>",
"lastName": "<string>",
"showFirstLastName": true,
"showName": true,
"email": "<string>",
"showEmail": true,
"phoneWork": "<string>",
"showPhoneWork": true,
"address1": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"showAddress": true,
"invoicePrefix": "<string>",
"status": "ACTIVE",
"invoiceClientInfoDefaults": {
"showClientEmail": true,
"showClientName": true,
"showClientBusinessName": true,
"showClientAddress": true,
"showClientPhoneWork": true
}
}
}
'