OrderBilling Test
TXN/OrderBilling
Order billing
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/OrderBilling

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : OrderBillingRequest

Request object type OrderBillingRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
AppealId integer
BatchTypeId integer
BillingTypeId integer
CutoffDateTime date
EndDateTime date
ListId integer
MaxNumberOfBillsToPrint integer
MediaTypeId integer
MinAmount decimal number
MinNumberOfBillsToPrint integer
ModesOfSale string
NewSourceDescription string
OrderEndDateTime date
OrderStartDateTime date
PaymentMethodGroupId integer
PerformanceEndDateTime date
PerformanceStartDateTime date
Seasons string
ShouldUpdate boolean
StartDateTime date
UserId string
{
  "OrderStartDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "OrderEndDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "ModesOfSale": "sample string 1",
  "Seasons": "sample string 2",
  "PerformanceStartDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "PerformanceEndDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "BillingTypeId": 3,
  "StartDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "EndDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "CutoffDateTime": "2025-04-24T05:19:01.8653413-07:00",
  "MinAmount": 4.0,
  "ShouldUpdate": true,
  "AppealId": 6,
  "NewSourceDescription": "sample string 7",
  "MediaTypeId": 8,
  "MinNumberOfBillsToPrint": 9,
  "MaxNumberOfBillsToPrint": 10,
  "ListId": 11,
  "UserId": "sample string 12",
  "BatchTypeId": 13,
  "PaymentMethodGroupId": 14
}
<OrderBillingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <AppealId>6</AppealId>
  <BatchTypeId>13</BatchTypeId>
  <BillingTypeId>3</BillingTypeId>
  <CutoffDateTime>2025-04-24T05:19:01.8653413-07:00</CutoffDateTime>
  <EndDateTime>2025-04-24T05:19:01.8653413-07:00</EndDateTime>
  <ListId>11</ListId>
  <MaxNumberOfBillsToPrint>10</MaxNumberOfBillsToPrint>
  <MediaTypeId>8</MediaTypeId>
  <MinAmount>4</MinAmount>
  <MinNumberOfBillsToPrint>9</MinNumberOfBillsToPrint>
  <ModesOfSale>sample string 1</ModesOfSale>
  <NewSourceDescription>sample string 7</NewSourceDescription>
  <OrderEndDateTime>2025-04-24T05:19:01.8653413-07:00</OrderEndDateTime>
  <OrderStartDateTime>2025-04-24T05:19:01.8653413-07:00</OrderStartDateTime>
  <PaymentMethodGroupId>14</PaymentMethodGroupId>
  <PerformanceEndDateTime>2025-04-24T05:19:01.8653413-07:00</PerformanceEndDateTime>
  <PerformanceStartDateTime>2025-04-24T05:19:01.8653413-07:00</PerformanceStartDateTime>
  <Seasons>sample string 2</Seasons>
  <ShouldUpdate>true</ShouldUpdate>
  <StartDateTime>2025-04-24T05:19:01.8653413-07:00</StartDateTime>
  <UserId>sample string 12</UserId>
</OrderBillingRequest>

Response object type : AutomatedBillingRunResponse

Response object type AutomatedBillingRunResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
BillCount integer N Number of bills to be processed.
Id integer N Billing run id.
IsComplete boolean N Whether billing process is complete. If false, billing run continues on a background thread. Call GET Txn/{BillingProcess}/{id}/Status for progress where Billing process is PledgeBilling, OrderBilling, or InvoiceBilling.
{
  "Id": 1,
  "BillCount": 2,
  "IsComplete": true
}
<AutomatedBillingRunResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <BillCount>2</BillCount>
  <Id>1</Id>
  <IsComplete>true</IsComplete>
</AutomatedBillingRunResponse>
Change Version Description Contract Old New
Response Type Changed 15.1.0 Response type has changed from OrderBillingResponses to AutomatedBillingRunResponse OrderBillingResponses AutomatedBillingRunResponse