curl --location --globoff --request PATCH 'https://platform-api.convirza.com/v3/geo-locations/{location_id}/routes/{route_id}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": "New York Downtown",
"address": "456 Broadway",
"city": "New York",
"state": "NY",
"zip": "10002",
"ivr_enabled": false,
"phone": "2125559876",
"ivr": {
"voice_prompt_id": 12345,
"ivr_actions": [
{
"action": "simple",
"org_unit_id": 12345,
"keypress": 1,
"destination": "Sales",
"ring_to_data": {
"ringto_num": "2125551234"
}
}
]
},
"claimed_zip": "10001,10002",
"claimed_states": "NY"
}'