Consultar la info de un conductor
[ GET ]
Consulta la información de un conductor sin alterar los valores del mismo.
https://sync.airbagtech.io/driver/{{DRIVER_ID}}
Campos
| Nombre | Tipo | Requerido | Descripción |
|---|---|---|---|
| DRIVER_ID | String | Si | ID del conductor al que se le va a cambiar el estado. |
Headers
| Content-Type | Autorization |
|---|---|
| application/json | apikey {{API_KEY}} |
Ejemplo
curl --location -g 'https://sync.airbagtech.io/driver/{{DRIVER_ID}}' \
--header 'Authorization: apikey {{API_KEY}}'
Respuestas
✅ Respuesta exitosa (200 OK)
Devuelve la ficha completa del conductor junto con su progreso de gamificación (nivel, racha) y metadatos de la cuenta.
{
"status": true,
"driver": {
"appStatus": "Activo",
"birthdate": "1992-08-14T06:00:00.000Z",
"civilStatus": "single",
"coins": 312,
"company": "Transportes Ejemplo",
"created": "2022-05-18T15:42:00.000Z",
"currentLevel": {
"currentDistance": 1823.4512038172645,
"remainingDistance": 3176.5487961827355,
"to": 10000,
"levelId": "a1B2c3D4e5F6g7H8i9J0",
"maxLevel": 7,
"name": "Nivel 4",
"from": 5001,
"percentageCompleted": 36,
"totalDistanceTravelled": 6823.451203817265,
"targetDistance": 5000
},
"currentStreak": {
"isInStreak": true,
"lastDayWithTrips": "2025-03-10T00:00:00.000Z",
"maxHistoricalStreak": 9,
"totalDaysOfStreak": 3,
"lastWeekDaysStreak": [
{
"date": "2025-03-10T00:00:00.000Z",
"dayCharacter": "L",
"dayOfWeek": "monday",
"streak": "IN_STREAK_ACTIVE"
},
{
"date": "2025-03-09T00:00:00.000Z",
"dayCharacter": "D",
"dayOfWeek": "sunday",
"streak": "IN_STREAK_ACTIVE"
},
{
"date": "2025-03-08T00:00:00.000Z",
"dayCharacter": "S",
"dayOfWeek": "saturday",
"streak": "IN_STREAK_ACTIVE"
},
{
"date": "2025-03-02T00:00:00.000Z",
"dayCharacter": "D",
"dayOfWeek": "sunday",
"streak": "OUT_OF_STREAK"
}
]
},
"email": "[email protected]",
"emailIsVerified": true,
"emailVerified": true,
"emergencyContact": {
"phone": "+525512345678",
"name": "Contacto Ejemplo",
"type": "cellphone"
},
"firstLogin": false,
"fullName": "Juan Pérez Ramírez",
"gender": "male",
"groups": ["grp_A1b2C3d4E5f6G7h8I9j0"],
"growthStatus": "ok",
"hasActiveSchedule": true,
"hasMarketingNotifications": false,
"hired": "2021-03-01T06:00:00.000Z",
"isDriving": false,
"isResting": false,
"lastName": "Pérez Ramírez",
"name": "Juan",
"nationalId": "PERJ920814HDFRMN03",
"nationality": "mex",
"phone": "+525598765432",
"showMobileScores": true,
"showMobileTrips": true,
"showMobileWorkDay": true,
"startStage": "0",
"status": "active",
"redeemCount": 2,
"airbagId": "ab12cd34ef56gh78ij90kl12mn34op56",
"id": "EMP-1042",
"useAirbagTelematics": true
}
}