summary refs log tree commit diff
path: root/t/specs/api.json
blob: 42e3c25eeac11f9015c90e1524012f73c41e343a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "name": "Test API",
    "methods" : {
        "get_info" : {
            "authentication": true,
            "path" : "/show",
            "method" : "GET",
            "optional_params" : [
                "user",
                "border"
            ]
        },
        "get_user_info" : {
            "required_params" : [
                "user"
            ],
            "optional_params" : [
                "border"
            ],
            "path" : "/show",
            "method" : "GET"
        }
    }
}