-
Notifications
You must be signed in to change notification settings - Fork 9
/
manual.http
125 lines (102 loc) · 2.88 KB
/
manual.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
POST http://localhost:3000/api/users
Content-Type: application/json
Accept: application/json
{
"username" : "khannedy",
"name" : "Eko Khannedy",
"password" : "rahasia"
}
### Login
POST http://localhost:3000/api/users/login
Content-Type: application/json
Accept: application/json
{
"username" : "khannedy",
"password" : "rahasia12345"
}
### Get User
GET http://localhost:3000/api/users/current
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### Logout User
DELETE http://localhost:3000/api/users/current
Accept: application/json
Authorization: 11c4957d-6028-4b9f-895b-8232782a10a9
### Update User
PATCH http://localhost:3000/api/users/current
Accept: application/json
Content-Type: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
{
"password" : "rahasia12345"
}
### Create contact
POST http://localhost:3000/api/contacts
Content-Type: application/json
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
{
"first_name" : "Joko",
"last_name" : "Morro",
"email" : "[email protected]",
"phone" : "089999999"
}
### Update contact
PUT http://localhost:3000/api/contacts/332
Content-Type: application/json
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
{
"first_name" : "Budi",
"last_name" : "Morro",
"email" : "[email protected]",
"phone" : "089999999"
}
### Get contact
GET http://localhost:3000/api/contacts/332
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### Delete contact
DELETE http://localhost:3000/api/contacts/333
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### Search contact
GET http://localhost:3000/api/contacts
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### Create Address
POST http://localhost:3000/api/contacts/332/addresses
Content-Type: application/json
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
{
"street" : "jalan contoh",
"city" : "kota contoh",
"province" : "provinsi contoh",
"country" : "negara contoh",
"postal_code" : "23434"
}
### Get Address
GET http://localhost:3000/api/contacts/332/addresses/171
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### List Address
GET http://localhost:3000/api/contacts/332/addresses
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
### Update Address
PUT http://localhost:3000/api/contacts/332/addresses/171
Content-Type: application/json
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52
{
"street" : "jalan contoh updated",
"city" : "kota contoh updated",
"province" : "provinsi contoh",
"country" : "negara contoh",
"postal_code" : "23434"
}
### Remove Address
DELETE http://localhost:3000/api/contacts/332/addresses/172
Accept: application/json
Authorization: f5fc1bb9-a979-4f95-9173-8d42d0ac8d52