summaryrefslogtreecommitdiff
path: root/t/specs/api.json
blob: a89d1476a055f281ae546cbaa9410c523b658baf (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
{
    "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_email" : {
        "path" : "/email",
        "method" : "POST",
        "form-data" : {
          "email" : ":email"
        },
        "required_params" : [
          "email"
        ]
      },
      "attach_file" : {
        "path":"/file",
        "method":"POST",
        "headers": {
          "content-type":":content_type"
        }
      }
    }
}