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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
"version" : "0.1",
"methods" : {
"get_root" : {
"path" : "/",
"method" : "GET"
},
"get_all_dbs" : {
"path" : "/_all_dbs",
"method" : "GET"
},
"get_active_tasks" : {
"path" : "/_active_tasks",
"method" : "GET"
},
"replicate" : {
"path" : "/_replicate",
"method" : "POST",
"required_payload" : true
},
"get_uuids" : {
"path" : "/_uuids",
"method" : "GET",
"optional_params" : [
"count"
]
},
"restart" : {
"path" : "/_restart",
"method" : "POST"
},
"get_stats" : {
"path" : "/_stats",
"method" : "GET"
},
"get_log" : {
"path" : "/_log",
"method" : "GET"
},
"get_config" : {
"path" : "/_config",
"method" : "GET"
},
"get_config_section" : {
"path" : "/_config/:section",
"method" : "GET",
"required_params" : [
"section"
]
},
"get_config_item" : {
"path" : "/_config/:section/:key",
"method" : "GET",
"required_params" : [
"section",
"key"
]
},
"set_config_item" : {
"path" : "/_config/:section/:key",
"method" : "PUT",
"required_params" : [
"section",
"key"
]
},
"delete_config_item" : {
"path" : "/_config/:section/:key",
"method" : "DELETE",
"required_params" : [
"section",
"key"
]
}
},
"formats" : [
"json"
],
"expected_status" : [ 200 ],
"name" : "CouchDB",
"authority" : "http://github.com/SPORE",
"meta" : {
"documentation" : "http://wiki.apache.org/couchdb/Complete_HTTP_API_Reference",
"module" : "server"
}
}
|