curl --location --globoff 'https://platform-api.convirza.com/v3/geo-locations/{location_id}/routes/import?is_migrated=' \
--header 'Authorization: Bearer <token>' \
--form 'file=@""'{
"total_rows": 10,
"successful": 8,
"failed": 2,
"results": [
{
"row": 2,
"success": true,
"location_route_id": 101,
"data": {
"location": "Store 1",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"zip": "10001",
"phone": "2125551234"
}
},
{
"row": 3,
"success": false,
"error": "Zip:99999 not found",
"data": {
"location": "Store 2",
"address": "456 Oak Ave",
"city": "Boston",
"state": "MA",
"zip": "99999",
"phone": "6175551234"
}
}
],
"message": "Imported 8 routes, 2 failed"
}