- Authentication
- Company
- get camera health error
- create a company
- get partner settings
- get audit logs of a company
- get input sensors notifications of a company
- get ignition notifications of a company
- get a company by ID
- update a company by ID
- update company
- search companies
- get companies list
- get a company
- get companies
- get partner companies list
- get own partner company
- Custom Role Permissions
- Device
- get company devices
- search devices
- update a device
- get a device data usage
- Play audible alert sound
- get devices data usage
- get a company devices by company ID
- restart a device
- get company devices with modems
- get distance
- get installed report of a device
- get an installed report
- merge profile with device config
- get audit logs of a device
- get list of trip dates for device
- get list of trips for passed device and date
- Get a device
- get list of company devices
- get device with driver id
- create devices (legacy/DV4)
- create devices (auto-prov/DV6)
- get company device using IMEI/SN
- check red bubble in manage vehicles
- bulk device creation
- get devices for all companies available for user
- get list of trip related snapshots
- reset status of sd card
- get list of all available dates
- get available video list for date
- replace device
- get replace history by device id
- clear device channel status
- get camera health error by device id
- get camera health definitions
- update camera health error by error id
- update camera health errors
- Get device list for multiple companies
- Get current activity status of devices
- Device Firmware
- Driver Scoring / Coaching
- get company drivers list
- get a list of trips
- associate a driver with a trip
- get driver by event_id
- update a driver
- get driver by trip_photo_id
- get driver scores
- add driver photo
- add a driver
- remove a driver
- upload a driver from csv file
- get unknown driver trips
- associate trip with the driver.
- Get company event score weights
- Update company event score weights
- Get drivers coaching events
- Event
- Get company eventsGET
- get an eventGET
- send an eventPUT
- get status of an eventGET
- Request videos of an eventPUT
- get uploaded videos of an eventGET
- get events summary of devicesGET
- get events summary of a deviceGET
- get a company events by company IDGET
- get status of an event by company IDGET
- get snapshots of an event or alertGET
- get snapshots of an event or alert by company IDGET
- get a last eventGET
- get a last event of devicesGET
- get events log of a deviceGET
- get dates of eventsGET
- get events for charts and graphsGET
- get events for charts and graphs by company IDGET
- get an event by company IDGET
- get events summary of a device by company IDGET
- request videos of an event by company IDPUT
- get dates of an events by company IDGET
- get a last event of company deviceGET
- clear last eventDELETE
- get dates of events of a deviceGET
- push custom eventPOST
- delete an eventDELETE
- request videos of an alertPUT
- share an eventPUT
- get an event by a permalinkGET
- get geotab eventsGET
- get a last updated event of devicesGET
- download a blocked eventPOST
- Get flagged company eventsGET
- flag an eventPUT
- unflag an eventDELETE
- generate snapshotsPUT
- local geocoding serviceGET
- update an eventPOST
- get snapshot/location of eventGET
- Get events for a deviceGET
- Request custom video from devicePUT
- get snapshot on demandGET
- get an event by a permalink hashGET
- Set Event Label for EventPOST
- Restore event video from archivePOST
- Add users for notification of event restore from archivePOST
- Add event labelPOST
- Add user feedback to eventPOST
- Get event user feedbackGET
- Get event filters list for date range in companyGET
- External Service
- Fleet Configuration
- Group
- get company groups
- add a group
- remove a group
- get devices of a group
- add a device to a group
- remove a device from a group
- get users of a group
- add a user to a group
- remove a user from a group
- get company groups by company ID
- add a device to a group by company ID
- get devices of a group by company ID
- remove a device from a group by company ID
- remove a group by company ID
- add a group by company ID
- add an user to a group by company ID
- get users of a group by company ID
- remove an user from a group by company ID
- edit group
- get groups with ID
- get group of a company by group ID
- Live streaming
- Metadata
- Modem Administration
- Report
- get data usage report
- Get custom report data
- get data usage report by device id
- get list of companies with data usage for date range
- get data usage for active devices for specified companies
- get companies with data usage for date range
- get data usage report for devices in company
- get data tracking report
- get all events report
- Get all events report for company
- get vehicle activity report
- get firmware report
- Get event count summary report for company devices
- get driver event breakdown report
- get driver event performance report
- Update custom report
- get custom reports by user email
- get custom report by report id
- put subscribe to a report
- get report subscriptions
- get list of standard reports
- get speeding summary report
- get speeding breakdown report
- get idling summary report
- get idling breakdown report
- Create custom report for user
- Partner Portal
- Releases
- Remote Device Management
- Statistics
- User
- get company users
- Get a user
- update a user
- remove a user
- Get own info
- create a user
- get company users by company ID
- get user settings
- set user settings
- Get application notifications
- remove the notification
- mark notifications as viewed
- verify password
- SD card reformat reminder
- Update notification by email
- assign user to company
- get permissions by a user_id
- Get event / sms notification settings
- Webhooks
get dates of events
GET
/partners/companies/{company_name}/events/dates
Request
Path Params
company_name
stringÂ
required
Query Params
start_ts
string <date-time>
required
Example:
20240915113500
end_ts
string <date-time>
optional
Example:
20241015113500
timezone
stringÂ
optional
Examples:
UTC-10UTC+4
search_type
stringÂ
optional
search
stringÂ
optional
device_ids
stringÂ
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fleet.roscolive.com/api/v1.0/partners/companies//events/dates?start_ts=&end_ts=&timezone=&search_type=&search=&device_ids=' \
--header 'Content-Type: text/plain' \
--data-raw ''
Responses
🟢200Success
application/json
Body
meta
objectÂ
required
code
integerÂ
required
response
objectÂ
required
events_dates
array[string]
required
result
stringÂ
required
Example
{
"meta": {
"code": 200
},
"response": {
"events_dates": [
"2024-08-16",
"2024-08-17",
"2024-08-18",
"2024-08-19",
"2024-08-20",
"2024-08-21",
"2024-09-09",
"2024-09-16",
"2024-10-24",
"2024-10-29",
"2024-10-30"
]
},
"result": "OK"
}
🟠401Login Required
Modified at 2025-02-03 15:52:30