UpdatePasswordRequest
Properties
| Property | Type | Required | Description |
|---|---|---|---|
current_password |
string | Yes | |
new_password |
string | Yes |
View JSON Schema
{
"type": "object",
"required": [
"current_password",
"new_password"
],
"properties": {
"current_password": {
"type": "string"
},
"new_password": {
"type": "string"
}
}
}