1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
"base_url" : "http://github.com/api/v2/",
"version" : "0.1",
"methods" : {
"get_organization" : {
"path" : "/:format/organizations/:org",
"method" : "GET",
"required_params" : [
"format",
"org"
]
},
"get_organization_teams" : {
"path" : "/:format/organizations/:org/teams",
"method" : "GET",
"required_params" : [
"format",
"org"
],
"authentication" : true
},
"get_organization_repositories" : {
"path" : "/:format/organizations/:org/repositories",
"method" : "GET",
"required_params" : [
"format",
"org"
],
"authentication" : true
},
"get_team_members" : {
"path" : "/:format/teams/:team/members",
"method" : "GET",
"requires_params" : [
"format",
"team"
],
"authentication" : true
},
"get_team_repositories" : {
"path" : "/:format/teams/:team/repositories",
"method" : "GET",
"required_params" : [
"format",
"team"
],
"authentication" : true
}
},
"expected_status" : [ 200 ],
"name" : "GitHub",
"authority" : "http://github.com/SPORE",
"meta" : {
"documentation" : "http://develop.github.com/",
"module" : "organization"
}
}
|