File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 9696 }
9797 }
9898 },
99+ "/user/forgotpassword/{email}" : {
100+ "post" : {
101+ "tags" : [ " user" ],
102+ "summary" : " sends a reset password email" ,
103+ "description" : " The forgot password endpoint." ,
104+ "parameters" : [ {
105+ "in" : " path" ,
106+ "name" : " email" ,
107+ "schema" : {
108+ "type" : " string" ,
109+ "format" : " email"
110+ },
111+ "required" : true ,
112+ "description" : " email of the user"
113+ }],
114+ "responses" : {
115+ "200" : {
116+ "description" : " Reset password email sent"
117+ },
118+ "404" : {
119+ "description" : " User not found by email address provided"
120+ },
121+ "422" : {
122+ "description" : " Invalid input"
123+ },
124+ "500" : {
125+ "description" : " Server error"
126+ }
127+ }
128+ }
129+ },
99130 "/user" : {
100131 "post" : {
101132 "tags" : [ " user" ],
You can’t perform that action at this time.
0 commit comments