diff --git a/ProtectedRouter.tsx b/ProtectedRouter.tsx index 8ef5589f..3d4c25f6 100644 --- a/ProtectedRouter.tsx +++ b/ProtectedRouter.tsx @@ -14,6 +14,7 @@ import {getUniqueId} from 'react-native-device-info'; import {useAppDispatch} from './src/hooks'; import {setAuthData} from './src/reducer/commonSlice'; import AllCases from './src/components/screens/allCases/AllCases'; +import AllCasesMain from './src/components/screens/allCases'; const Stack = createNativeStackNavigator(); @@ -46,7 +47,7 @@ const ProtectedRouter = () => { <> null, }} @@ -66,7 +67,7 @@ const ProtectedRouter = () => { <> null, }} diff --git a/src/components/formRenderingEngine/index.tsx b/src/components/formRenderingEngine/index.tsx index ff7aec1c..98cd0977 100644 --- a/src/components/formRenderingEngine/index.tsx +++ b/src/components/formRenderingEngine/index.tsx @@ -48,7 +48,6 @@ const RenderingEngine: React.FC = props => { () => journeyOrder.map((eachJourney, index) => { const journey = props.data.journeys[eachJourney]; - return ( handleNextContext(journey)} diff --git a/src/components/screens/allCases/AllCases.tsx b/src/components/screens/allCases/AllCases.tsx index 0772f231..e3806af1 100644 --- a/src/components/screens/allCases/AllCases.tsx +++ b/src/components/screens/allCases/AllCases.tsx @@ -1,20 +1,18 @@ -import { - ListRenderItemInfo, - Pressable, - StyleSheet, - View, - VirtualizedList, -} from 'react-native'; import React from 'react'; +import { + ListRenderItemInfo, StyleSheet, + View, + VirtualizedList +} from 'react-native'; -import data from '../../../data/cases.json'; import Heading from '../../../../RN-UI-LIB/src/components/Heading'; -import {GenericStyles} from '../../../../RN-UI-LIB/src/styles'; -import Avatar from '../../../../RN-UI-LIB/src/components/Avatar'; import Text from '../../../../RN-UI-LIB/src/components/Text'; -import {COLORS} from '../../../../RN-UI-LIB/src/styles/colors'; -import {SwipeContainer} from './SwipeContainer'; -import { caseStates, caseVerdict, Data, taskStatus, Type } from './interface'; +import { GenericStyles } from '../../../../RN-UI-LIB/src/styles'; +import { COLORS } from '../../../../RN-UI-LIB/src/styles/colors'; +import data from '../../../data/cases.json'; +import { caseStatus, caseVerdict, Data, taskStatus, Type } from './interface'; +import ListItem from './ListItem'; +import { SwipeContainer } from './SwipeContainer'; interface IItem { @@ -22,57 +20,24 @@ interface IItem { todoList: Array; } -const CardItem: React.FC = props => { - const propData = props; - const onClick = () => { - alert(propData.caseId); - } - return ( - // Todo kunal to add the page switching logic - - - - - - - - {propData.customerInfo.name} - - - {propData.currentTask.title}: {' '} - - {propData.currentTask.detail} - - - {/* TODO write color coding logic with tag component */} - - {propData.caseStatus} - - - - - ); -}; - const Item: React.FC = (props) => { const propData = props.data.item; const todoList = props.todoList; let completedCount = 0; - todoList.forEach(todo => - todo.caseStatus === caseStates.COMPLETED_AND_VERIFIED ? completedCount++ : completedCount, - ); + todoList.forEach(todo =>{ + if(todo.caseStatus === caseStatus.CLOSED){ + completedCount++; + } + }); switch (propData.type) { case Type.CASES: - return ; + return ; case Type.TODO: return ( Left} onSwipeRight={() => Right}> - + ); case Type.CASES_HEADER: @@ -92,7 +57,7 @@ const Item: React.FC = (props) => { - {todoList.length} pending + {todoList.length - completedCount} pending ; const getItem = (item: Array, index: number) => item[index]; const AllCases = () => { - const dataForTODOList = [ - { - caseId: 1, - updatedAt: 1670434722030, - caseStatus: 'TODO', - caseVerdict: 'COMPLETED', - displayTag: "don't know", - customerInfo: { - name: 'Kunal Sharma', - imageUrl: - 'https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png', - }, - currentTask: { - title: 'comms', - detail: '', - status: 'unVerified', - }, - pinnedRank: 1, - }, - { - caseId: 2, - updatedAt: 1670434722030, - caseStatus: 'TODO', - caseVerdict: 'COMPLEATED', - displayTag: "don't know", - customerInfo: { - name: 'Kunal Sharma', - imageUrl: - 'https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png', - }, - currentTask: { - title: 'comms', - detail: '', - status: 'unVerified', - }, - pinnedRank: 2, - }, - { - caseId: 3, - updatedAt: 1670434722030, - caseStatus: 'TODO', - caseVerdict: 'COMPLEATED', - displayTag: "don't know", - customerInfo: { - name: 'Kunal Sharma', - imageUrl: - 'https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png', - }, - currentTask: { - title: 'comms', - detail: '', - status: 'unVerified', - }, - pinnedRank: 3, - }, - { - caseId: 4, - updatedAt: 1670434722030, - caseStatus: 'TODO', - caseVerdict: 'COMPLEATED', - displayTag: "don't know", - customerInfo: { - name: 'Kunal Sharma', - imageUrl: - 'https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png', - }, - currentTask: { - title: 'comms', - detail: '', - status: 'unVerified', - }, - pinnedRank: 4, - }, - { - caseId: 5, - updatedAt: 1670434722030, - caseStatus: 'TODO', - caseVerdict: 'COMPLEATED', - displayTag: "don't know", - customerInfo: { - name: 'Kunal Sharma', - imageUrl: - 'https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png', - }, - currentTask: { - title: 'comms', - detail: '', - status: 'unVerified', - }, - pinnedRank: 5, - }, - ]; + + const todo = data.allCases.filter(data => data.pinnedRank); + + const other = data.allCases.filter(data => !data.pinnedRank); let dataForList: Data[] = []; - if (dataForTODOList.length) { + if (todo.length) { dataForList.push({ type: Type.TODO_HEADER, - caseId: 111111111, + caseId: 11111221111, updatedAt: 111111111, - caseStatus: caseStates.IN_PROGRESS, - caseVerdict: caseVerdict.assigned, + caseStatus: caseStatus.IN_PROGRESS, + caseVerdict: caseVerdict.ASSIGNED, displayTag: 'string', customerInfo: { name: 'string', @@ -229,42 +106,42 @@ const AllCases = () => { detail: 'string', status: taskStatus.OPEN, }, - pinnedRank: 111111111, - }); - dataForTODOList.forEach(item => { - dataForList.push({ - type: Type.TODO, - ...item, - }); - }); - dataForList.push({ - type: Type.CASES_HEADER, - caseId: 11111111231, - updatedAt: 111111111, - caseStatus: caseStates.COMPLETED_AND_VERIFIED, - caseVerdict: caseVerdict.assigned, - displayTag: 'string', - customerInfo: { - name: 'string', - imageUrl: 'string', - }, - currentTask: { - title: 'string', - detail: 'string', - status: taskStatus.OPEN, - }, - pinnedRank: 111111111, + pinnedRank: 0, }); + todo.forEach(todo => dataForList.push({ + type: Type.TODO, + ...todo + })) } - data.allCases.forEach(item => { - if (!dataForTODOList.some(id => id.caseId === item.caseId)) { + if(other.length){ + if(todo.length){ dataForList.push({ - type: Type.CASES, - ...item, + type: Type.CASES_HEADER, + caseId: 111111111, + updatedAt: 111111111, + caseStatus: caseStatus.IN_PROGRESS, + caseVerdict: caseVerdict.ASSIGNED, + displayTag: 'string', + customerInfo: { + name: 'string', + imageUrl: 'string', + }, + currentTask: { + title: 'string', + detail: 'string', + status: taskStatus.OPEN, + }, + pinnedRank: 111111111, }); } - }); + other.forEach(todo => dataForList.push({ + type: Type.CASES, + ...todo + })) + } + + console.log(dataForList.length) return ( @@ -272,7 +149,7 @@ const AllCases = () => { data={dataForList as Array} initialNumToRender={4} renderItem={row => ( - + )} keyExtractor={item => item.caseId} getItemCount={item => item.length} @@ -291,10 +168,6 @@ const styles = StyleSheet.create({ pv12: { paddingVertical: 12, }, - avatarContainer: { - height: 40, - width: 40, - }, dot: { height: 5, width: 5, diff --git a/src/components/screens/allCases/ComplatedCase.tsx b/src/components/screens/allCases/ComplatedCase.tsx new file mode 100644 index 00000000..4349efae --- /dev/null +++ b/src/components/screens/allCases/ComplatedCase.tsx @@ -0,0 +1,41 @@ +import {StyleSheet, View, VirtualizedList} from 'react-native'; +import React from 'react'; +import data from '../../../data/cases.json'; +import {caseStatus, Data} from './interface'; +import ListItem from './ListItem'; +import {COLORS} from '../../../../RN-UI-LIB/src//styles/colors'; +// import Text from '../../../../RN-UI-LIB/src/components/Text'; + +const Seperator = () => ; + +const getItem = (item: Array, index: number) => item[index]; + +const ComplatedCase = () => { + const completed = data.allCases.filter( + data => data.caseStatus === caseStatus.CLOSED, + ); + return ( + + } + initialNumToRender={4} + renderItem={row => ( + + )} + keyExtractor={item => item.caseId} + getItemCount={item => item.length} + getItem={getItem} + ItemSeparatorComponent={} + /> + + ); +}; + +const styles = StyleSheet.create({ + seperator: { + backgroundColor: COLORS.BORDER.PRIMARY, + height: 2, + }, +}); + +export default ComplatedCase; diff --git a/src/components/screens/allCases/ListItem.tsx b/src/components/screens/allCases/ListItem.tsx new file mode 100644 index 00000000..8a3eff25 --- /dev/null +++ b/src/components/screens/allCases/ListItem.tsx @@ -0,0 +1,74 @@ +import {Pressable, StyleSheet, View} from 'react-native'; +import React from 'react'; +import {caseStatus, caseVerdict, caseVerdictAndColor, Data} from './interface'; +import Avatar from '../../../../RN-UI-LIB/src/components/Avatar'; +import Text from '../../../../RN-UI-LIB/src/components/Text'; +import Heading from '../../../../RN-UI-LIB/src/components/Heading'; +import {GenericStyles} from '../../../../RN-UI-LIB/src/styles'; + +interface IListItem { + caseData: Data; + compleatedList?: boolean; +} + +const ListItem: React.FC = props => { + const {caseData, compleatedList} =props; + const onClick = () => { + alert(caseData.caseId); + }; + if (!compleatedList && caseData.caseStatus === caseStatus.CLOSED) { + return null; + } + return ( + // Todo kunal to add the page switching logic + + + alert('clicked on avatar')}> + + + + + + + {caseData.customerInfo.name} + + + {caseData.currentTask.title}:{' '} + {caseData.currentTask.detail} + + {/* TODO write color coding logic with tag component */} + {caseData.caseVerdict !== caseVerdict.NEW && ( + + {caseVerdictAndColor[caseData.caseVerdict].text} + + )} + + + + ); +}; + +const styles = StyleSheet.create({ + pv12: { + paddingVertical: 12, + }, + avatarContainer: { + height: 40, + width: 40, + }, + fb80: { + flexBasis: '80%', + }, +}); + +export default ListItem; diff --git a/src/components/screens/allCases/index.tsx b/src/components/screens/allCases/index.tsx new file mode 100644 index 00000000..f5831bcf --- /dev/null +++ b/src/components/screens/allCases/index.tsx @@ -0,0 +1,30 @@ +import React from 'react'; +import {View} from 'react-native'; +import {GenericStyles} from '../../../../RN-UI-LIB/src//styles'; +import Tabs from '../../../../RN-UI-LIB/src/components/tabs/Tabs'; +import AllCases from './AllCases'; +import ComplatedCase from './ComplatedCase'; + +const tabItems = [ + {key: 'first', title: 'First', content: AllCases}, + {key: 'second', title: 'Second', content: ComplatedCase}, +]; + +const AllCasesMain = () => { + return ( + + + + + ); +}; + +export default AllCasesMain; diff --git a/src/components/screens/allCases/interface.ts b/src/components/screens/allCases/interface.ts index 80250d9a..e87b19c5 100644 --- a/src/components/screens/allCases/interface.ts +++ b/src/components/screens/allCases/interface.ts @@ -1,3 +1,5 @@ +import {COLORS} from '../../../../RN-UI-LIB/src/styles/colors'; + export enum Type { TODO, TODO_HEADER, @@ -6,13 +8,12 @@ export enum Type { } export enum caseVerdict { - new, - unassigned, - assigned, - in_progress, - closed, - forced_Closed, - expired, + NEW = 'NEW', + IN_PROGRESS = 'IN_PROGRESS', + CLOSED = 'CLOSED', + FORCE_CLOSE = 'FORCE_CLOSE', + EXPIRED = 'FORCE_CLOSE', + NEW_ADDRESS_FOUND = 'NEW_ADDRESS_FOUND', } export enum taskStatus { @@ -23,16 +24,40 @@ export enum taskStatus { NOT_REQUIRED, } -export enum caseStates { - COMPLETED_AND_VERIFIED, - IN_PROGRESS, +export enum caseStatus { + NEW = 'NEW', + UNASSIGNED = 'UNASSIGNED', + ASSIGNED = 'ASSIGNED', + IN_PROGRESS = 'IN_PROGRESS', + CLOSED = 'CLOSED', + FORCE_CLOSE = 'FORCE_CLOSE', + EXPIRED = 'FORCE_CLOSE', } +export const caseVerdictAndColor = { + COMPLETED_AND_VERIFIED: { + text: 'Verified', + color: COLORS.TEXT.BLUE, + }, + IN_PROGRESS: { + text: 'In Progress', + color: COLORS.TEXT.GREEN, + }, + ASSIGNED: { + text: 'Assigned', + color: COLORS.TEXT.GREEN, + }, + NEW_ADDRESS_FOUND: { + text: 'New Address Found', + color: COLORS.TEXT.YELLOW, + }, +}; + export interface Data { type?: Type; // this is for maintaing frontend caseId: number; updatedAt: number; - caseStatus: caseStates; + caseStatus: caseStatus; caseVerdict: caseVerdict; displayTag: string; customerInfo: { diff --git a/src/data/cases.json b/src/data/cases.json index 45cfab75..b71668a6 100644 --- a/src/data/cases.json +++ b/src/data/cases.json @@ -2,9 +2,9 @@ "allCases": [ { "caseId": 1, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -12,16 +12,16 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 1 }, { "caseId": 2, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -29,16 +29,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 3, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 2 }, { - "caseId": 3, - "updatedAt": 1670434722030, + "caseId": 4, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -46,16 +63,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 5, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 3 }, { - "caseId": 4, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 6, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -63,16 +97,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 7, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 4 }, { - "caseId": 5, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 8, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -80,16 +131,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 9, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 5 }, { - "caseId": 6, - "updatedAt": 1670434722030, + "caseId": 10, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -97,16 +165,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 11, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 6 }, { - "caseId": 7, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 12, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -114,16 +199,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 13, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 7 }, { - "caseId": 8, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 14, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -131,16 +233,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 15, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 8 }, { - "caseId": 9, - "updatedAt": 1670434722030, + "caseId": 16, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -148,16 +267,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 17, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 9 }, { - "caseId": 10, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 18, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -165,16 +301,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 19, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 10 }, { - "caseId": 11, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 20, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -182,16 +335,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 21, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 11 }, { - "caseId": 12, - "updatedAt": 1670434722030, + "caseId": 22, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -199,16 +369,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 23, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 12 }, { - "caseId": 13, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 24, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -216,16 +403,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 25, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 13 }, { - "caseId": 14, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 26, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -233,16 +437,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 27, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 14 }, { - "caseId": 15, - "updatedAt": 1670434722030, + "caseId": 28, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -250,16 +471,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 29, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 15 }, { - "caseId": 16, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 30, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -267,16 +505,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 31, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 16 }, { - "caseId": 17, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 32, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -284,16 +539,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 33, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 17 }, { - "caseId": 18, - "updatedAt": 1670434722030, + "caseId": 34, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -301,16 +573,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 35, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 18 }, { - "caseId": 19, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 36, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -318,16 +607,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 37, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 19 }, { - "caseId": 20, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 38, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -335,16 +641,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 39, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 20 }, { - "caseId": 21, - "updatedAt": 1670434722030, + "caseId": 40, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -352,16 +675,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 41, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 21 }, { - "caseId": 22, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 42, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -369,16 +709,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 43, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 22 }, { - "caseId": 23, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 44, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -386,16 +743,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 45, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 23 }, { - "caseId": 24, - "updatedAt": 1670434722030, + "caseId": 46, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -403,16 +777,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 47, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 24 }, { - "caseId": 25, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 48, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -420,16 +811,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 49, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 25 }, { - "caseId": 26, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 50, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -437,16 +845,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 51, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 26 }, { - "caseId": 27, - "updatedAt": 1670434722030, + "caseId": 52, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -454,16 +879,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 53, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 27 }, { - "caseId": 28, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 54, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -471,16 +913,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 55, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 28 }, { - "caseId": 29, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 56, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -488,16 +947,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 57, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 29 }, { - "caseId": 30, - "updatedAt": 1670434722030, + "caseId": 58, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -505,16 +981,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 59, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 30 }, { - "caseId": 31, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 60, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -522,16 +1015,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 61, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 31 }, { - "caseId": 32, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 62, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -539,16 +1049,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 63, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 32 }, { - "caseId": 33, - "updatedAt": 1670434722030, + "caseId": 64, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -556,16 +1083,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 65, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 33 }, { - "caseId": 34, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 66, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -573,16 +1117,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 67, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 34 }, { - "caseId": 35, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 68, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -590,16 +1151,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 69, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 35 }, { - "caseId": 36, - "updatedAt": 1670434722030, + "caseId": 70, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -607,16 +1185,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 71, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 36 }, { - "caseId": 37, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 72, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -624,16 +1219,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 73, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 37 }, { - "caseId": 38, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 74, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -641,16 +1253,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 75, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 38 }, { - "caseId": 39, - "updatedAt": 1670434722030, + "caseId": 76, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -658,16 +1287,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 77, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 39 }, { - "caseId": 40, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 78, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -675,16 +1321,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 79, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 40 }, { - "caseId": 41, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 80, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -692,16 +1355,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 81, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 41 }, { - "caseId": 42, - "updatedAt": 1670434722030, + "caseId": 82, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -709,16 +1389,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 83, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 42 }, { - "caseId": 43, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 84, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -726,16 +1423,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 85, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 43 }, { - "caseId": 44, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 86, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -743,16 +1457,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 87, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 44 }, { - "caseId": 45, - "updatedAt": 1670434722030, + "caseId": 88, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -760,16 +1491,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 89, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 45 }, { - "caseId": 46, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 90, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -777,16 +1525,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 91, + "updatedAt": 1670536168445, + "caseStatus": "NEW", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 46 }, { - "caseId": 47, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 92, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -794,16 +1559,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 93, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 47 }, { - "caseId": 48, - "updatedAt": 1670434722030, + "caseId": 94, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -811,16 +1593,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 95, + "updatedAt": 1670536168445, + "caseStatus": "FORCE_CLOSE", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 48 }, { - "caseId": 49, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 96, + "updatedAt": 1670536168445, + "caseStatus": "EXPIRED", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -828,16 +1627,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 97, + "updatedAt": 1670536168445, + "caseStatus": "CLOSED", + "caseVerdict": "COMPLETED_AND_VERIFIED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 49 }, { - "caseId": 50, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseId": 98, + "updatedAt": 1670536168445, + "caseStatus": "UNASSIGNED", + "caseVerdict": "IN_PROGRESS", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -845,849 +1661,33 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", + "status": "unVerified" + }, + "pinnedRank": null + }, + { + "caseId": 99, + "updatedAt": 1670536168445, + "caseStatus": "ASSIGNED", + "caseVerdict": "ASSIGNED", + "displayTag": "don't know", + "customerInfo": { + "name": "Kunal Sharma", + "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" + }, + "currentTask": { + "title": "comms", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, "pinnedRank": 50 }, - { - "caseId": 51, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 51 - }, - { - "caseId": 52, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 52 - }, - { - "caseId": 53, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 53 - }, - { - "caseId": 54, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 54 - }, - { - "caseId": 55, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 55 - }, - { - "caseId": 56, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 56 - }, - { - "caseId": 57, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 57 - }, - { - "caseId": 58, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 58 - }, - { - "caseId": 59, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 59 - }, - { - "caseId": 60, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 60 - }, - { - "caseId": 61, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 61 - }, - { - "caseId": 62, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 62 - }, - { - "caseId": 63, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 63 - }, - { - "caseId": 64, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 64 - }, - { - "caseId": 65, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 65 - }, - { - "caseId": 66, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 66 - }, - { - "caseId": 67, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 67 - }, - { - "caseId": 68, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 68 - }, - { - "caseId": 69, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 69 - }, - { - "caseId": 70, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 70 - }, - { - "caseId": 71, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 71 - }, - { - "caseId": 72, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 72 - }, - { - "caseId": 73, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 73 - }, - { - "caseId": 74, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 74 - }, - { - "caseId": 75, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 75 - }, - { - "caseId": 76, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 76 - }, - { - "caseId": 77, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 77 - }, - { - "caseId": 78, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 78 - }, - { - "caseId": 79, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 79 - }, - { - "caseId": 80, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 80 - }, - { - "caseId": 81, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 81 - }, - { - "caseId": 82, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 82 - }, - { - "caseId": 83, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 83 - }, - { - "caseId": 84, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 84 - }, - { - "caseId": 85, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 85 - }, - { - "caseId": 86, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 86 - }, - { - "caseId": 87, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 87 - }, - { - "caseId": 88, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 88 - }, - { - "caseId": 89, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 89 - }, - { - "caseId": 90, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 90 - }, - { - "caseId": 91, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 91 - }, - { - "caseId": 92, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 92 - }, - { - "caseId": 93, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 93 - }, - { - "caseId": 94, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 94 - }, - { - "caseId": 95, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 95 - }, - { - "caseId": 96, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 96 - }, - { - "caseId": 97, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 97 - }, - { - "caseId": 98, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 98 - }, - { - "caseId": 99, - "updatedAt": 1670434722030, - "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", - "displayTag": "don't know", - "customerInfo": { - "name": "Kunal Sharma", - "imageUrl": "https://d33wubrfki0l68.cloudfront.net/2a3556a09e73a07aacedb2bcfaa39512cd37a3f4/68f50/img/templates/akshay-kumar-scheme-pose.png" - }, - "currentTask": { - "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", - "status": "unVerified" - }, - "pinnedRank": 99 - }, { "caseId": 100, - "updatedAt": 1670434722030, + "updatedAt": 1670536168445, "caseStatus": "IN_PROGRESS", - "caseVerdict": "new", + "caseVerdict": "NEW_ADDRESS_FOUND", "displayTag": "don't know", "customerInfo": { "name": "Kunal Sharma", @@ -1695,10 +1695,10 @@ }, "currentTask": { "title": "comms", - "detail": "Gokarna is a small temple town located in Uttara Kannada district of Karnataka state in India, It has a population of around 20,000. The main temple and", + "detail": "Gokarna is a town on the Arabian Sea, in the southwestern Indian state of Karnataka. A popular pilgrimage destination for Hindus, it’s known for sacred sites like Mahabaleshwar Temple, which has a shrine dedicated to the deity Shiva. Nearby, Koti Teertha is a temple tank where devotees wash in the holy waters. The town is also home to beaches such as palm-lined Gokarna, in the center, plus Kudle and Om farther south", "status": "unVerified" }, - "pinnedRank": 100 + "pinnedRank": null } ] } \ No newline at end of file