add password reset

This commit is contained in:
Paul Coral
2025-08-11 23:15:43 +02:00
parent da3a9d6880
commit 1f0a27a2e1
8 changed files with 123 additions and 14 deletions

View File

@@ -0,0 +1,23 @@
meta {
name: reset password
type: http
seq: 2
}
post {
url: {{BASE_URL}}/auth/reset
body: json
auth: inherit
}
body:json {
{
"userId": "9",
"resetToken": "baeaff51ad72152db8b55006e95ca605a375f4d5143b764bbe0d24a6dca02baf",
"newPassword": "Password1234"
}
}
settings {
encodeUrl: true
}