Get event filters list for date range in company
GET
/partners/companies/{company_name}/events/filtersReturns a list of applicable filter categories for events in the given duration.
User Role Permissions
The following table shows which user roles are allowed to send requests using this API endpoint.
Role | Permission |
---|---|
Partner | |
Partner View | |
Custom Partner | |
Fleet Manager | |
Group Manager | |
User | |
Custom User |
Request
Path Params
company_name
string
required
Name of company in RoscoLive
Query Params
start_ts
string <YYYYMMDDhhmmss>
optional
Start date/time for the desired time period in UTC
>= 14 characters<= 14 characters
Example:
20250112154200
end_ts
string <YYYYMMDDhhmmss>
optional
End date/time for desired time period in UTC
>= 14 characters<= 14 characters
Example:
20250112170000
device_ids
string
optional
A comma-separated list of device IDs in the company to return data for
Example:
1234567890,0789456123,9874563210
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
meta
object
required
Request metadata object
code
integer
required
HTTP status code returned by response
>= 100<= 599
response
array [object {3}]
required
Contains response data
fulltype
string
required
Full event type name
geotab
integer
required
Used for Geotab integration
type
string
required
Type name mapped to RoscoLive event type
result
enum<string>
required
"OK" if successful, else "Fail" if error
Allowed values:
OKFailed
Example
{
"meta": {
"code": 100
},
"response": [
{
"fulltype": "string",
"geotab": 0,
"type": "string"
}
],
"result": "OK"
}
Last modified: 10 days ago