aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Endpoints/Internal/PasswordResetRequests/_calls.http
blob: cfd2d580b0c83d711603158b26868ad152dddc32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
### Create request
POST http://localhost:5000/_/password-reset-request/create
Accept: application/json
Content-Type: application/json

{
  "email": ""
}

### Fulfill request
POST http://localhost:5000/_/password-reset-request/fulfill
Accept: application/json
Content-Type: application/json

{
  "id": "",
  "newPassword": ""
}

### Is request valid
GET http://localhost:5000/_/password-reset-request/is-valid?id=
Accept: application/json