Authorization: Bearer ********************curl --location --request POST '/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": true, // it can be true or false
"state": "" // if country is Nigeria
}'{
"success": true,
"message": "Business added successfully",
"data": {
"user_id": 3,
"business_type_id": "1",
"name": "Foodr's ",
"country": "United Kingdom",
"currency": "POUNDS",
"state": "",
"is_default": true,
"created_at": "2023-09-07T16:59:20.684+01:00",
"updated_at": "2023-09-07T16:59:20.684+01:00",
"id": 48
}
}