24 lines
272 B
Plaintext
24 lines
272 B
Plaintext
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"
|
|
}
|
|
}
|