summaryrefslogtreecommitdiff
path: root/test.http
blob: c8bb3aaf972556de7e9e995b8381b1c0bc35ce8e (plain)
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
# -*- restclient -*-
#
# see https://github.com/pashky/restclient.el

:host := "http://127.0.0.1:3000"
:headers = <<
Accept: application/json
User-Agent: Emacs
#

:form = <<
Content-Type: application/x-www-form-urlencoded
#

# Initialize the database with exmaple data
POST :host/bootstrap
:headers

# should return 20 entries
GET :host/query
:headers

# get the total number of records
GET :host/count
:headers


# store jenny's number
POST :host/number
:headers
{
 "name": "Jenny",
 "number": "8675309",
 "context": "Number on the wall"
}

# store Bob's number
POST :host/number
:headers
{ "name": "Bob Barker", "number": "+1555678909", "context": "personal"}

# get jenny's number
GET :host/query?number=8675309
:headers

# get bob's
GET :host/query?number=%2B15556789090
:headers