blob: 7341405eeab40b1c5bee34469f6ff3dc694bb6ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"name": "Test API",
"methods" : {
"get_projects" : {
"authentication": true,
"path" : "/projects/show",
"method" : "GET",
"optional_params" : [
"name"
]
},
"get_project_info" : {
"required_params" : [
"project"
],
"path" : "/project/show",
"method" : "GET"
}
}
}
|