Authenticate Test
Security/Authenticate/Token/Generate
NOTE: THIS IS FOR TESSITURA USE ONLY. Custom implementations of this endpoint are not supported. Authenticate the provided credentials and return a timed token that can be used to proxy this result.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Security/Authenticate/Token/Generate

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : AuthenticationRequest

Request object type AuthenticationRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
Application string N
MachineLocation string N
Password string Y
UserGroup string N
UserName string Y
{
  "UserName": "sample string 1",
  "UserGroup": "sample string 2",
  "Password": "sample string 3",
  "MachineLocation": "sample string 4",
  "Application": "sample string 5"
}
<AuthenticationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Application>sample string 5</Application>
  <MachineLocation>sample string 4</MachineLocation>
  <Password>sample string 3</Password>
  <UserGroup>sample string 2</UserGroup>
  <UserName>sample string 1</UserName>
</AuthenticationRequest>

Response object type : AuthenticationTokenResponse

Response object type AuthenticationTokenResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
Token string
{
  "Token": "sample string 1"
}
<AuthenticationTokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Token>sample string 1</Token>
</AuthenticationTokenResponse>
Change Version Description Contract Old New
Operation Added 15.0.0 GenerateToken has been added. GenerateToken