PUT api/credentials/updatepassword?userName={userName}&oldPassword={oldPassword}&newPassword={newPassword}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
Required |
|
| oldPassword | string |
Required |
|
| newPassword | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Credentials| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| UserAddress | string |
None. |
|
| Password | string |
None. |
|
| LoggedIn | boolean |
None. |
|
| AccountIsActive | boolean |
None. |
|
| LastLoggingDate | date |
None. |
|
| APIToken | string |
None. |
|
| ExpirationTokenDate | date |
None. |
|
| AuthenticationCodeExpirationDate | date |
None. |
|
| AuthenticationCode | string |
None. |
|
| MyTwoFactorAuthenticationEnabled | boolean |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"UserAddress": "sample string 3",
"Password": "sample string 4",
"LoggedIn": true,
"AccountIsActive": true,
"LastLoggingDate": "2025-12-05T20:26:15.0165845-08:00",
"APIToken": "sample string 8",
"ExpirationTokenDate": "2025-12-05T20:26:15.0165845-08:00",
"AuthenticationCodeExpirationDate": "2025-12-05T20:26:15.0165845-08:00",
"AuthenticationCode": "sample string 11",
"MyTwoFactorAuthenticationEnabled": true,
"Id": "4ebf2bbd-6327-4b95-b016-4dfae601f59f",
"CreatedDate": "2025-12-05T20:26:15.0165845-08:00",
"ModifiedDate": "2025-12-05T20:26:15.0165845-08:00",
"DeletedDate": "2025-12-05T20:26:15.0165845-08:00"
}
application/xml, text/xml
Sample:
<Credentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:26:15.0165845-08:00</CreatedDate> <DeletedDate>2025-12-05T20:26:15.0165845-08:00</DeletedDate> <Id>4ebf2bbd-6327-4b95-b016-4dfae601f59f</Id> <ModifiedDate>2025-12-05T20:26:15.0165845-08:00</ModifiedDate> <APIToken>sample string 8</APIToken> <AccountIsActive>true</AccountIsActive> <AuthenticationCode>sample string 11</AuthenticationCode> <AuthenticationCodeExpirationDate>2025-12-05T20:26:15.0165845-08:00</AuthenticationCodeExpirationDate> <ExpirationTokenDate>2025-12-05T20:26:15.0165845-08:00</ExpirationTokenDate> <FirstName>sample string 1</FirstName> <LastLoggingDate>2025-12-05T20:26:15.0165845-08:00</LastLoggingDate> <LastName>sample string 2</LastName> <LoggedIn>true</LoggedIn> <MyTwoFactorAuthenticationEnabled>true</MyTwoFactorAuthenticationEnabled> <Password>sample string 4</Password> <UserAddress>sample string 3</UserAddress> </Credentials>