Report schedule
Particular report can be delivered to user's mailbox regularly.
Contains report schedule object description and API calls to interact with it.
schedule_entry object:
{
"id": 1,
"enabled": true,
"parameters": {
"period": "1m",
"schedule": {
"type": "weekdays",
"weekdays": [1, 2, 3, 4, 5]
},
"report": {
"trackers": [1],
"title": "Title",
"time_filter": {
"from": "00:00:00",
"to": "23:59:59",
"weekdays": [1, 2, 3, 4, 5, 6, 7]
},
"geocoder": "yandex",
"plugin": {
"plugin_id": 4,
"show_idle_duration": false
}
},
"emails": ["[email protected]"],
"email_format": "pdf",
"email_zip": false,
"sending_time": "12:00:00"
},
"fire_time": "2014-09-05 00:00:00",
"last_result": {
"success": true,
"id": 1
}
}id- int. Schedule id, ignored on create.enabled- boolean.trueif the scheduled report enabled.period- string. Report period, "Xm" | "w" | "d" | "y".emails- optional string array. List of emails.email_format- enum. Can be "pdf" | "xls".sending_time- optional string. Local time for sending reports, default "00:00:00", hourly granularity.fire_time- optional string. Last schedule fire time, ignored on create/update.last_resultobject with last report creation result.id- int. An ID of generated report.
API actions
API path: /report/schedule.
create
Creates a new report schedule entry.
required sub-user rights: reports.
Parameters
schedule
Schedule object without fields "id", "fire_time", "last_result".
JSON object
Example
cURL
curl -X POST 'https://api.eu.navixy.com/v2/report/schedule/create' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3", "schedule": {"enabled": true, "parameters": {"report": {"title": "Trip report", "trackers": [669673], "time_filter": {"from": "00:00:00", "to": "23:59:59", "weekdays": [1,2,3,4,5,6,7]}, "plugin": {"hide_empty_tabs": true, "plugin_id": 4, "show_seconds": false, "include_summary_sheet_only": false, "split": true, "show_idle_duration": false, "show_coordinates": false, "filter": true, "group_by_driver": false}}, "period": "1w", "email_zip": false, "email_format": "xls", "emails": ["[email protected]"], "sending_time": "00:00:00", "schedule": {"type": "weekdays", "weekdays": [1]}}}}}'Response
{
"success": true,
"id": 111
}id- int. An ID of the created schedule entry.
Errors
217 - List contains nonexistent entities - if one or more of tracker IDs belong to nonexistent tracker (or to a tracker belonging to different user).
222 - Plugin not found - if specified report plugin not found.
236 - Feature unavailable due to.
delete
Deletes report schedule with the specified ID.
required sub-user rights: reports.
Parameters
schedule_id
ID of the report schedule to delete.
int
Examples
curl -X POST 'https://api.eu.navixy.com/v2/report/schedule/delete' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3", "schedule_id": 1234567}'https://api.eu.navixy.com/v2/report/schedule/delete?hash=a6aa75587e5c59c32d347da438505fc3&schedule_id=1234567Response
{
"success": true
}Errors
201 - Not found in the database - if there is no schedule with specified ID.
list
Get all report schedules belonging to user.
required sub-user rights: reports.
Parameters
Only API key hash.
Examples
curl -X POST 'https://api.eu.navixy.com/v2/report/schedule/list' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3"}'https://api.eu.navixy.com/v2/report/schedule/list?hash=a6aa75587e5c59c32d347da438505fc3Response
{
"success": true,
"list": [
{
"id": 1,
"enabled": true,
"parameters": {
"period": "1m",
"schedule": {
"type": "weekdays",
"weekdays": [1, 2, 3, 4, 5]
},
"report": {
"trackers": [1],
"title": "Title",
"time_filter": {
"from": "00:00:00",
"to": "23:59:59",
"weekdays": [1, 2, 3, 4, 5, 6, 7]
},
"geocoder": "yandex",
"plugin": {
"plugin_id": 4,
"show_idle_duration": false
}
},
"emails": ["[email protected]"],
"email_format": "pdf",
"email_zip": false,
"sending_time": "12:00:00"
},
"fire_time": "2014-09-05 00:00:00",
"last_result": {
"success": true,
"id": 1
}
}
]
}Errors
General types only.
update
Update existing report schedule.
required sub-user rights: reports.
Parameters
schedule
Schedule object without fields "fire_time", "last_result".
JSON object
Example
cURL
curl -X POST 'https://api.eu.navixy.com/v2/report/schedule/update' \
-H 'Content-Type: application/json' \
-d '{"hash": "a6aa75587e5c59c32d347da438505fc3", "schedule": {"enabled": true, "parameters": {"report": {"title": "Trip report", "trackers": [669673], "time_filter": {"from": "00:00:00", "to": "23:59:59", "weekdays": [1,2,3,4,5,6,7]}, "plugin": {"hide_empty_tabs": true, "plugin_id": 4, "show_seconds": false, "include_summary_sheet_only": false, "split": true, "show_idle_duration": false, "show_coordinates": false, "filter": true, "group_by_driver": false}}, "period": "1w", "email_zip": false, "email_format": "xls", "emails": ["[email protected]"], "sending_time": "00:00:00", "schedule": {"type": "weekdays", "weekdays": [1]}}}}}'Response
{
"success": true
}Errors
217 - List contains nonexistent entities - if one or more of tracker IDs belong to nonexistent tracker (or to a tracker belonging to different user).
222 - Plugin not found - if specified report plugin not found.
236 - Feature unavailable due to tariff restrictions - if device's tariff does not allow usage of reports.
Last updated
Was this helpful?