23 lines
262 B
Plaintext
23 lines
262 B
Plaintext
meta {
|
|
name: Change Password
|
|
type: http
|
|
seq: 7
|
|
}
|
|
|
|
put {
|
|
url: {{API_URL}}/account/password
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"password": "New Password"
|
|
}
|
|
}
|
|
|
|
script:post-response {
|
|
const apiKey = res.body
|
|
bru.setVar("bearer",apiKey)
|
|
}
|