LogoLogo
ProductsUse casesDocsSupport
  • Introducing DriveKit
  • DriveKit Guides
  • Get started with drivekit
    • Trip recording lifecycle
    • iOS
      • 🚀Quick start
      • Advanced configurations
      • References
      • iOS DriveKit Demo App
    • Android
      • 🚀Quick start
      • Advanced configurations
      • References
      • Android DriveKit Demo App
      • Android 15 Migration guide
      • Android 14 Migration guide
      • Troubleshooting
  • Trip analysis
    • Introduction
    • iOS
      • Permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (iOS)
    • Android
      • Runtime permissions
      • Trip management
      • TripListener
      • Crash Detection
      • Beacon usage
      • Bluetooth usage
      • Custom metadata
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
      • Android
        • Get started
        • Working hours
        • Driver alert in case of crash
        • Trip recording widget
        • Location sharing
    • REST services
      • Trip
      • References
    • Trip Simulator
      • iOS
      • Android
  • PERMISSIONS UTILS
    • Introduction
    • User interface
      • iOS
        • Get started
        • Main configurations
      • Android
        • Get started
        • Main configurations
  • COMMON UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
    • References
  • DRIVER DATA
    • Introduction
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
      • Android
        • Get Started
        • Advanced configurations
        • Trips widgets
        • My Synthesis
        • My Driver Profile
  • Driver Data Timeline UI
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • Vehicle
    • Introduction
    • iOS
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (iOS)
    • Android
      • Get started
      • Vehicle management
      • Beacon management
      • Bluetooth device management
      • Odometer
      • References (Android)
    • User interface
      • iOS
        • Get started
        • Main configurations
        • Advanced configurations
      • Android
        • Get started
        • Main configurations
        • Advanced configurations
  • DRIVER ACHIEVEMENT
    • Introduction
    • iOS
      • Get started
    • Android
      • Get Started
    • User interface
      • iOS
      • Android
  • CHALLENGE
    • Introduction
    • Important challenge rules
    • iOS
      • Get started
      • References (iOS)
    • Android
      • Get started
      • References (Android)
    • User interface
      • iOS
        • Get started
      • Android
        • Get started
  • GROUP
    • Introduction
    • iOS
      • Get started
    • Android
      • Get started
  • React Native
    • Get started
    • Integration
  • Flutter
    • Get started
    • Integration
  • Push services
    • Introduction
    • Push Trip Data
    • Push Deleted trip
    • Push Crash Data
    • Push Diagnosis Data
  • ADMIN SERVICES
    • Beacon
      • Add
      • Replace
      • Delete
      • Configuration
    • Challenges
      • List of challenges
      • Challenge details
      • Registered users
      • Challenge ranking
      • Users' progress
      • Definitions
    • Customer
      • Activity timeline
    • Driver
      • Timeline
      • Synthesis
      • Identity
      • Status
      • Add or update a metadata
      • Vehicles
      • Profile
      • Application diagnoses
    • Drivers
      • Account
      • Statistics
      • Ranking
      • Expired accounts
    • Group
      • Timeline
      • Synthesis
    • Trips
      • Add or update a metadata
      • Delete a metadata
    • Vehicle
      • Create
      • Characteristics
      • Configuration
      • Statistics
      • Update mileage
      • Tire and brake wear update
      • References
  • Crashes
    • Annotate a crash
    • Revoke crash location URL
  • ENTERPRISE SERVICES
    • Introduction
    • Teams
      • Create a team
      • List of teams
      • Enable or disable a team
    • Hyper-admins
      • Create a hyper-admin
      • List of hyper-admins
      • Delete a hyper-admin
    • Monitoring
      • Get a push trip data report
      • Get a push crash data report
      • Request to retry failed trips
      • Request to retry failed crashes
      • Get the status of a task
  • Release notes
    • Changelog
      • iOS
      • Android
      • UI iOS
      • UI Android
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. ADMIN SERVICES
  2. Customer

Activity timeline

PreviousCustomerNextDriver

Last updated 1 year ago

Was this helpful?

The activity timeline service provides weekly and monthly chronological reports of the number of users in your organisation.

Weekly and monthly timelines include the following indicators:

  • The total number of registered users which includes both the active and the inactive users.

  • The number of new users who created an account during the given period.

  • The number of active users: who recorded at least one trip during the given period.

  • the number of deleted users during the given period.

If you have your admin API key, you can try the API via this .

Response

The table below summarizes the list of activity data.

Field
Type
Description

week

object

month

object

CustomerActivityTimelineItem

The monthly and weekly activity has the same structure, represented by a CustomerActivityTimelineItem object described in the table below.

Field
Type
Description

date

array[string]

Dates corresponding to the first day of the week or month.

Date format: YYYY-MM-dd’T’HH:mm:ss.SSSZ

registeredUsers

array[int]

Total number of registered users.

newUsers

array[int]

Number of new users in the given period.

deletedUsers

array[int]

Number of users having their accounts deleted in the given period.

activeUsers

array[int]

Number of active users who recorded at least one trip during the given period.

List of weekly activity (see )

List of monthly activity (see )

CustomerActivityTimelineItem
CustomerActivityTimelineItem
link

Customer activity timeline

get

Get weekly and monthly chronological reports of the number of users in your organisation.

Header parameters
DriveKit-Admin-API-KeystringRequired

Drivekit Admin API key

Responses
200
OK
application/json
401
Unauthorized
get
GET /v3/drivekit/admin/customer/activity/timeline HTTP/1.1
Host: service.drivequant.com
DriveKit-Admin-API-Key: text
Accept: */*
{
  "week": {
    "date": [
      "2023-05-01T12:00:00.000+0000",
      "2023-05-08T12:00:00.000+0000",
      "2023-05-15T12:00:00.000+0000",
      "2023-05-22T12:00:00.000+0000",
      "2023-05-29T12:00:00.000+0000"
    ],
    "registeredUsers": [
      3,
      20,
      765,
      1209,
      1572
    ],
    "newUsers": [
      0,
      17,
      745,
      444,
      363
    ],
    "deletedUsers": [
      0,
      0,
      0,
      0,
      0
    ],
    "activeUsers": [
      0,
      10,
      381,
      705,
      956
    ]
  },
  "month": {
    "date": [
      "2023-05-01T12:00:00.000+0000"
    ],
    "registeredUsers": [
      971
    ],
    "newUsers": [
      968
    ],
    "deletedUsers": [
      0
    ],
    "activeUsers": [
      565
    ]
  }
}
  • GETCustomer activity timeline
  • Response
  • CustomerActivityTimelineItem