Authorization: Bearer ********************curl --location --request POST '/desktop/business/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"business_type": "1",
"name": "Foodr'\''s",
"country": "United Kingdom",
"currency": "POUNDS",
"isDefault": false, // it can be true or false
"state": "" // if country is Nigeria
}'{
"success": true,
"message": "Business added successfully",
"data": {
"user_id": "2",
"business_type_id": "1",
"name": "Foodr's",
"country": "United Kingdom",
"currency": "POUNDS",
"state": "",
"created_at": "2025-01-29T11:34:41.060+01:00",
"updated_at": "2025-01-29T11:34:41.060+01:00",
"id": "199"
}
}