# Listar rondines - getRondinesProceso ##### POST https://api.service24gps.com/api/v1/getRondinesProceso Este método lista la información de los rondines programados para hoy y/o de la semana.
Ver parámetros de solicitud:
**Parámetros****Descripción****Ejemplo**
imeiIMEI o identificador único del dispositivo codificado en Base64. MTIzNDU2Nzg5
AuthorizationToken generado por el método auth.eyJ0eXAi5225V1QiLCJhbGciOiJIUz7829.eyJ1aWQiOiJPR1ZrTlRVMk5URTNObU0wTXpNM013PT0iLCJ0eXBlIjoiTWc9PSIsImRhdGV0aW1lIjoiMjAyMjA0MjcxNjU0MTkiLCJleHBpcmUiOjIxNjAwLCJjbGllbnRlIjoiTkRFNE9UYz0iLCJkaXN0cmlidWlkb3IiOiJOREU0T1RZPSJ9.TvJclXkRKzKmoDgjeOuZCZOYix4HhTXy4\_5lSMRgTMU
##### Solicitud de ejemplo: ```shell curl --location --request POST 'https://api.service24gps.com/api/v1/onapp/getRondinesProceso' \ --header 'Authorization: eyJ0eXAi5225V1QiLCJhbGciOiJIUz7829.eyJ1aWQiOiJPR1ZrTlRVMk5URTNObU0wTXpNM013PT0iLCJ0eXBlIjoiTWc9PSIsImRhdGV0aW1lIjoiMjAyMjA0MjcxNjU0MTkiLCJleHBpcmUiOjIxNjAwLCJjbGllbnRlIjoiTkRFNE9UYz0iLCJkaXN0cmlidWlkb3IiOiJOREU0T1RZPSJ9.TvJclXkRKzKmoDgjeOuZCZOYix4HhTXy4_5lSMRgTMU' \ --form 'imei="OGVkNTU2NTE3NmM0MzM3Mw=="' ``` ##### Respuesta de ejemplo: ```JSON { "status": 200, "data": { "2022-04-27": [ { "idruta_proceso": 0, "idruta": "23884", "nombre": "testHora", "fecha_inicio": "2022-04-27", "hora_inicio": "13:45", "fecha_fin": "2022-04-27", "hora_fin": "15:00:00", "estatus": "", "idvehiculo": "169202", "lugares": [ { "id": "uid43662083", "tipo": 0, "orden": "1", "nombre": "q1", "dist_pa": 0, "latLng": "0,0", "fEstimada": "", "tolerancia": 0, "timeBetween": 0, "distLleg": "0", "orientacion": "", "completado": 0, "tipoLugarTag": "1", "codigo": "uid43662083", "sinoGPS": "0" }, { "id": "uid43707424", "tipo": 0, "orden": "2", "nombre": "q2", "dist_pa": 0, "latLng": "0,0", "fEstimada": "", "tolerancia": 0, "timeBetween": 0, "distLleg": "0", "orientacion": "", "completado": 0, "tipoLugarTag": "1", "codigo": "uid43707424", "sinoGPS": "0" } ] } ], "2022-04-30": [ { "idruta_proceso": 0, "idruta": "23884", "nombre": "testHora", "fecha_inicio": "2022-04-30", "hora_inicio": "13:45", "fecha_fin": "2022-04-30", "hora_fin": "15:00:00", "estatus": "", "idvehiculo": "169202", "lugares": [ { "id": "uid43662083", "tipo": 0, "orden": "1", "nombre": "q1", "dist_pa": 0, "latLng": "0,0", "fEstimada": "", "tolerancia": 0, "timeBetween": 0, "distLleg": "0", "orientacion": "", "completado": 0, "tipoLugarTag": "1", "codigo": "uid43662083", "sinoGPS": "0" }, { "id": "uid43707424", "tipo": 0, "orden": "2", "nombre": "q2", "dist_pa": 0, "latLng": "0,0", "fEstimada": "", "tolerancia": 0, "timeBetween": 0, "distLleg": "0", "orientacion": "", "completado": 0, "tipoLugarTag": "1", "codigo": "uid43707424", "sinoGPS": "0" } ] } ] }, "extra": { "nombre": "TestUser", "patente": "27223" } } ```