feat: api users change password endpoint

This commit is contained in:
2025-12-30 10:55:46 +00:00
parent 3d23627433
commit 54b4fc7cb1
4 changed files with 48 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
meta {
name: Patch Password
type: http
seq: 3
}
patch {
url: {{api_url}}/users/me
body: json
auth: none
}
headers {
Accept: application/json
Authorization: Bearer {{token}}
}
body:json {
{
"current_password":"123",
"new_password": "456"
}
}