Authorization: Bearer ********************
{
"zone": "South Zone",
"country": 1,
"state": 2,
"city": 3,
"suburb": [2]
}
curl --location -g --request PATCH '{{base_url}}customer-zone/1/' \
--header 'Content-Type: application/json' \
--data-raw '{
"zone": "South Zone",
"country": 1,
"state": 2,
"city": 3,
"suburb": [2]
}'
{}