diff options
Diffstat (limited to 'code/api/src/Endpoints/Internal')
| -rw-r--r-- | code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http b/code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http index c400f49..cfd2d58 100644 --- a/code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http +++ b/code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http @@ -7,11 +7,16 @@ Content-Type: application/json "email": "" } -### Create request -POST http://localhost:5000/_/password-reset-request/create +### Fulfill request +POST http://localhost:5000/_/password-reset-request/fulfill Accept: application/json Content-Type: application/json { - "email": "" + "id": "", + "newPassword": "" } + +### Is request valid +GET http://localhost:5000/_/password-reset-request/is-valid?id= +Accept: application/json |
