DataReportive dashboard interface showing database report generation

Getting Schedules

The schedules API endpoints allow you to retrieve information about your schedules. You can either fetch all schedules associated with your account or get detailed information about a specific schedule using its ID. All requests require authentication using your API token.

Getting all Schedules
GET /api/v1/schedules/

Getting a specific Schedule ( Possible values: The numeric ID for the Schedule. This can be retrieved for each schedule in the response for all active Schedules. )
GET /api/v1/schedules/[ Schedule ID ]/

Getting all Schedules

curl 'https://acmeinc.datareportive.com/api/v1/schedules/' -X GET -H "Authorization: Token [ TOKEN ]"

Getting a specific Schedule

curl 'https://acmeinc.datareportive.com/api/v1/schedules/[ GROUP ID ]/' -X GET -H "Authorization: Token [ TOKEN ]"