Cron List
Returns the cron job list. Please note this api requires write access to the repository.
GET /api/repos/{owner}/{repo}/cron
Example Response Body:
1 [
2 {
3 "id": 1,
4 "repo_id": 42,
5 "name": "nightly",
6 "expr": "0 0 1 * * *",
7 "branch": "master",
8 "next": 1564120128,
9 "pref": 1564116480,
10 "created": 1564096971,
11 "updated": 1564096971
12 }
13 ]