PledgeBilling Test
TXN/PledgeBilling/{id}/Status
Get status of a pledge billing run. Job is finished processing when IsCompleted is true. Only billing runs using automated billing will be running after the response from a POST to Txn/PledgeBilling.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/PledgeBilling/{id}/Status

URI Parameters

Parameter Name Data Type Required Notes
id integer N

Request Body

None.

No request body.

Response object type : AutomatedBillingStatus

Response object type AutomatedBillingStatus has the following properties.
Property Name Data Type Length Required Readonly Notes
BillCount integer N
HasErrors boolean N
Id integer N
IsComplete boolean N
Message string N
ProcessedCount integer N
{
  "Id": 1,
  "BillCount": 2,
  "ProcessedCount": 3,
  "IsComplete": true,
  "HasErrors": true,
  "Message": "sample string 6"
}
<AutomatedBillingStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <BillCount>2</BillCount>
  <HasErrors>true</HasErrors>
  <Id>1</Id>
  <IsComplete>true</IsComplete>
  <Message>sample string 6</Message>
  <ProcessedCount>3</ProcessedCount>
</AutomatedBillingStatus>
Change Version Description Contract Old New
Operation Added 15.1.0 GetStatus has been added. GetStatus