Repo List
Returns repositories which are registered to Drone.
GET /api/user/repos
Example Response Body:
1 [
2 {
3 "id": 42,
4 "uid": "16607898",
5 "user_id": 2,
6 "namespace": "octocat",
7 "name": "octocat",
8 "slug": "octocat/hello-world",
9 "scm": "git",
10 "git_http_url": "https://github.com/octocat/hello-world.git",
11 "git_ssh_url": "git@github.com:octocat/hello-world.git",
12 "link": "https://github.com/octocat/hello-world",
13 "default_branch": "master",
14 "private": false,
15 "visibility": "public",
16 "active": true,
17 "config_path": ".drone.yml",
18 "trusted": false,
19 "protected": false,
20 "ignore_forks": false,
21 "ignore_pull_requests": false,
22 "timeout": 60,
23 "counter": 185,
24 "synced": 1542160374,
25 "created": 1542160374,
26 "updated": 1542160374,
27 "version": 187
28 }
29 ]