-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyjsonfile.json
70 lines (70 loc) · 2.22 KB
/
myjsonfile.json
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
[
[
{
"path": "/api/v1/signup",
"title": "fail: due to blank first name",
"data": {
"input": {
"body": {
"first_name": "",
"last_name": "minate",
"phone": "1234567891",
"email": "[email protected]",
"password": "!(_Um1n4t3"
}
},
"output": {
"body": {
"success": false,
"error": {
"message": "Phone alreadyExists",
"status": 422,
"code": "auth/unique-already-in-use"
}
}
}
}
},
{
"path": "/api/v1/signup",
"title": "success: all data correct",
"data": {
"input": {
"body": {
"first_name": "ilu2",
"last_name": "minate2",
"phone": "1234567891",
"email": "[email protected]",
"password": "!(_Um1n4t3"
}
},
"output": {
"body": {
"success": true,
"data": {
"user": {
"profile_image_urls": {
"original": "/public/images/common/default.png",
"x256": "/public/images/common/default.png",
"x720": "/public/images/common/default.png"
},
"first_name": "ilu2",
"last_name": "minate2",
"email": "[email protected]",
"roles": ["user"],
"_id": "5cb28df739a45ecc834c5cec",
"phone": "1234567891",
"created_at": "2019-04-14T01:33:43.769Z",
"albums": [],
"provider": "local",
"__v": 0
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImlsdW1pbmF0ZUBpbmRpYTIuY29tIiwicHJvZmlsZV9pbWFnZV91cmxzIjp7Im9yaWdpbmFsIjoiL3B1YmxpYy9pbWFnZXMvY29tbW9uL2RlZmF1bHQucG5nIiwieDI1NiI6Ii9wdWJsaWMvaW1hZ2VzL2NvbW1vbi9kZWZhdWx0LnBuZyIsIng3MjAiOiIvcHVibGljL2ltYWdlcy9jb21tb24vZGVmYXVsdC5wbmcifSwiX2lkIjoiNWNiMjhkZjczOWE0NWVjYzgzNGM1Y2VjIiwicm9sZXMiOlsidXNlciJdLCJpYXQiOjE1NTUyMDU2MjN9.xXno3fV5x5H4546kqyuyGO4S5bjATilSkVCxHGdYNSw"
}
}
}
}
},
null
]
]