Overview
Create a new record of a specified type.
Summary
This endpoint allows for changes to the user's password. If client type is support_portal, it will update the corrending Contact. Otherwise, it will update User
Request Arguments
| Name |
Type |
Description |
Required |
|
old_password
|
String
|
The current password.
|
True
|
|
new_password
|
String
|
The new password.
|
True
|
Request
{
"old_password":"myoldpass",
"new_password":"mynewpass"
}
Response Arguments
| Name |
Type |
Description |
|
valid
|
Boolean
|
Returns the success of the password verification.
|
|
expiration
|
Date
|
When the password will expire.
|
Response
{
"valid":true,
"expiration":null
}
Change Log
| Version |
Change |
|
v10
|
Added /me/password PUT endpoint.
|