Session Test
Web/Session/BusinessFacing
Creates a new business-facing session and returns a unique session key.

A source number and mode of sale must be supplied. An optional valid batch id may be included.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Session/BusinessFacing

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : BusinessFacingSessionRequest

Request object type BusinessFacingSessionRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
BusinessUnit integer N The business unit for this session.
FK: TR_BU.id   Resource: BusinessUnits
IpAddress string Y Specifies the IP Address to be stored in the T_WEB_SESSION_SESSION table.
Organization string N The organization name for this session. Must match the description column for a row in TR_ORGANIZATION.
SessionInfo SessionInfo Y SessionInfo (Batch, Mode of sale, Source) for this session. Refer to SessionInfo contract for more information.
{
  "IpAddress": "sample string 1",
  "BusinessUnit": 2,
  "Organization": "sample string 3",
  "SessionInfo": {
    "BatchId": 1,
    "ModeOfSaleId": 2,
    "PromotionCode": 3
  }
}
<BusinessFacingSessionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <BusinessUnit>2</BusinessUnit>
  <IpAddress>sample string 1</IpAddress>
  <Organization>sample string 3</Organization>
  <SessionInfo>
    <BatchId>1</BatchId>
    <ModeOfSaleId>2</ModeOfSaleId>
    <PromotionCode>3</PromotionCode>
  </SessionInfo>
</BusinessFacingSessionRequest>

Response object type : SessionResponse

Response object type SessionResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
SessionKey string
{
  "SessionKey": "sample string 1"
}
<SessionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <SessionKey>sample string 1</SessionKey>
</SessionResponse>

No entries in change log for this operation.