Users Test
Security/Users/{userName}/Password
Allows for changing of a user's password
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Security/Users/{userName}/Password

URI Parameters

Parameter Name Data Type Required Notes
userName string Y

Request Body

Request object type : PasswordChangeRequest

Request object type PasswordChangeRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
NewPassword string 16 Y The plain text password you wish to be hashed and stored.
OldPassword string 16 Y Must match user's current password or call will fail.
{
  "OldPassword": "sample string 1",
  "NewPassword": "sample string 2"
}
<PasswordChangeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <NewPassword>sample string 2</NewPassword>
  <OldPassword>sample string 1</OldPassword>
</PasswordChangeRequest>

Response object type : User

Response object type User has the following properties.
Property Name Data Type Length Required Readonly Notes
ActiveDirectoryUserName string
EmailAddress string
FirstName string
Id string
Inactive boolean
LastName string
Locked boolean
LoginCount integer
MaxLogins integer
WorkerConstituentId integer
{
  "Id": "sample string 1",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "EmailAddress": "sample string 4",
  "Inactive": true,
  "WorkerConstituentId": 1,
  "Locked": true,
  "ActiveDirectoryUserName": "sample string 7",
  "LoginCount": 8,
  "MaxLogins": 9
}
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ActiveDirectoryUserName>sample string 7</ActiveDirectoryUserName>
  <EmailAddress>sample string 4</EmailAddress>
  <FirstName>sample string 2</FirstName>
  <Id>sample string 1</Id>
  <Inactive>true</Inactive>
  <LastName>sample string 3</LastName>
  <Locked>true</Locked>
  <LoginCount>8</LoginCount>
  <MaxLogins>9</MaxLogins>
  <WorkerConstituentId>1</WorkerConstituentId>
</User>
Change Version Description Contract Old New
Operation Added 15.0.0 ChangePassword has been added. ChangePassword