summary refs log tree commit diff
path: root/t/specs/api.json
blob: aee5d46fe71bb5c70ed70eb4973fe4e8736c722f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "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"
        },
      "add_user": {
        "path":"/add",
        "method":"POST"
      },
      "add_email" : {
        "path" : "/email",
        "method" : "POST",
        "form-data" : {
          "email" : ":email"
        },
        "required_params" : [
          "email"
        ]
      },
      "attach_file" : {
        "path":"/file",
        "method":"POST",
        "headers": {
          "content-type":":content_type"
        }
      }
    }
}