-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest.http
91 lines (68 loc) · 1.42 KB
/
rest.http
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
87
88
89
90
91
GET https://ga01-5e4a4.firebaseio.com/stocks.json
###
GET https://ga01-5e4a4.firebaseio.com/ga01-5e4a4/trello-board/boards.json
###
PUT https://ga01-5e4a4.firebaseio.com/trello-board.json
Content-Type: application/json
{
"boards":[1]
}
###
PUT https://ga01-5e4a4.firebaseio.com/ga01-5e4a4/trello-board.json
Content-Type: application/json
{
"boards":[]
}
###
ga01-5e4a4
{
"name": "-MALIJzQY56uI2ejILWR"
}
###
GET https://ga01-5e4a4.firebaseio.com/stocks/AMZN.json
###
PUT https://ga01-5e4a4.firebaseio.com/stocks/AMZN.json
Content-Type: application/json
{
"buydate": "2020-05-09",
"buyprice": "800",
"isUser": true,
"name": "Amazon.com Inc",
"shares": "25",
"symbol": "AMZN"
}
###
PATCH https://ga01-5e4a4.firebaseio.com/stocks/AMZN.json
Content-Type: application/json
{
"buyprice": "500"
}
###
PATCH https://ga01-5e4a4.firebaseio.com/stocks/AMZN3.json
Content-Type: application/json
{
"buydate": "2020-05-09",
"buyprice": "101",
"isUser": true,
"name": "Amazon.com Inc",
"shares": "25",
"symbol": "AMZN"
}
###
PATCH https://ga01-5e4a4.firebaseio.com/stocks/AMZN.json
Content-Type: application/json
{
"buydate": "2020-05-09",
"buyprice": "200",
"name": "Amazon.com Inc",
"shares": "25",
"symbol": "AMZN"
}
###
POST https://ga01-5e4a4.firebaseio.com/trello/boards.json
Content-Type: application/json
{
"boardName":"Bless",
"boardType":"Design",
"members": "Z,X,Y"
}