-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathdatabase.json
More file actions
99 lines (99 loc) · 2.97 KB
/
database.json
File metadata and controls
99 lines (99 loc) · 2.97 KB
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
[
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/signup",
"body": {
"client_id": "test-client-id",
"email": "test-email@example.com",
"password": "test-password",
"connection": "Username-Password-Authentication"
},
"status": 200,
"response": {
"_id": "test-id",
"email_verified": false,
"email": "test-email@example.com"
}
},
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/signup",
"body": {
"client_id": "test-client-id",
"email": "test-email@example.com",
"password": "test-password",
"connection": "Username-Password-Authentication"
},
"status": 200,
"response": {
"_id": "test-id",
"email_verified": false,
"email": "test-email@example.com"
}
},
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/signup",
"body": {
"client_id": "test-client-id",
"email": "test-email-1@example.com",
"password": "test-password",
"connection": "Username-Password-Authentication"
},
"status": 200,
"response": {
"user_id": "test-id",
"email_verified": false,
"email": "test-email-1@example.com"
}
},
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/signup",
"body": {
"client_id": "test-client-id",
"email": "test-email-2@example.com",
"password": "test-password",
"connection": "Username-Password-Authentication"
},
"status": 200,
"response": {
"id": "test-id",
"email_verified": false,
"email": "test-email-2@example.com"
}
},
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/signup",
"body": {
"client_id": "test-client-id",
"email": "test-email-duplicate@example.com",
"password": "test-password",
"connection": "Username-Password-Authentication"
},
"status": 400,
"response": {
"name": "BadRequestError",
"code": "invalid_signup",
"description": "Invalid sign up"
}
},
{
"scope": "https://test-domain.auth0.com",
"method": "POST",
"path": "/dbconnections/change_password",
"body": {
"client_id": "test-client-id",
"email": "test-email@example.com",
"connection": "Username-Password-Authentication"
},
"status": 200,
"response": "We've just sent you an email to reset your password."
}
]