CoreIdentity Test
Security/CoreIdentity/Sign
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Security/CoreIdentity/Sign

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : CoreIdentitySignRequest

Request object type CoreIdentitySignRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Body of the Http request to be signed.
Headers Collection of NameValue Headers associated with the Http request to be signed.
Method string Http method of the request to be signed. Should be DELETE, GET, POST or PUT.
Path string Path of the Http request to be signed.
QueryParameters Collection of NameValue Query parameters associated with the Http request to be signed.
{
  "Method": "sample string 1",
  "Path": "sample string 2",
  "Headers": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    }
  ],
  "QueryParameters": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    }
  ],
  "Body": "sample string 3"
}
<CoreIdentitySignRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 3</Body>
  <Headers>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
  </Headers>
  <Method>sample string 1</Method>
  <Path>sample string 2</Path>
  <QueryParameters>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
  </QueryParameters>
</CoreIdentitySignRequest>

Response object type : CoreIdentitySignResponse

Response object type CoreIdentitySignResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Encoded body.
LicenseeAccountCode string
Signature string Encoded signature of the body.
Token string Core Identity JWT Token.
Username string Core Identity Service Key.
{
  "Username": "sample string 1",
  "Token": "sample string 2",
  "Body": "sample string 3",
  "Signature": "sample string 4",
  "LicenseeAccountCode": "sample string 5"
}
<CoreIdentitySignResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 3</Body>
  <LicenseeAccountCode>sample string 5</LicenseeAccountCode>
  <Signature>sample string 4</Signature>
  <Token>sample string 2</Token>
  <Username>sample string 1</Username>
</CoreIdentitySignResponse>
Change Version Description Contract Old New
Resource Added 15.2.33 New resource added. CoreIdentity