Http Verb | POST |
Resource URL | https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/Payments/Plan/NumberOfPayments |
URI Parameters
|
Request BodyRequest object type : PaymentPlanRequest
|
{
"StartDate": "2025-04-24T09:23:03.3431384-07:00",
"EndDate": "2025-04-24T09:23:03.3431384-07:00",
"NumberOfPayments": 1,
"AccountId": 1,
"Card": {
"PaymentMethodGroupId": 1,
"Name": "sample string 1",
"Number": "sample string 2",
"ExpiryMonth": 3,
"ExpiryYear": 4
},
"BillingTypeId": 1
}
<PaymentPlanRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<AccountId>1</AccountId>
<BillingTypeId>1</BillingTypeId>
<Card>
<ExpiryMonth>3</ExpiryMonth>
<ExpiryYear>4</ExpiryYear>
<Name>sample string 1</Name>
<Number>sample string 2</Number>
<PaymentMethodGroupId>1</PaymentMethodGroupId>
</Card>
<EndDate>2025-04-24T09:23:03.3431384-07:00</EndDate>
<NumberOfPayments>1</NumberOfPayments>
<StartDate>2025-04-24T09:23:03.3431384-07:00</StartDate>
</PaymentPlanRequest>
Response object type : Collection of PaymentPlan
Response object type Collection of PaymentPlan has the following properties. |
Property Name | Data Type | Length | Required | Readonly | Notes |
---|---|---|---|---|---|
AccountId | integer | ||||
AmountDue | decimal number | ||||
BillingType | EntitySummary | ||||
Card | PaymentPlanCard | ||||
DateDue | date | ||||
Id | integer |
[
{
"Id": 1,
"AmountDue": 2.0,
"AccountId": 3,
"DateDue": "2025-04-24T09:23:03.3431384-07:00",
"BillingType": {
"Id": 1,
"Description": "sample string 2"
},
"Card": {
"PaymentMethodGroupId": 1,
"Name": "sample string 1",
"Number": "sample string 2",
"ExpiryMonth": 3,
"ExpiryYear": 4
}
},
{
"Id": 1,
"AmountDue": 2.0,
"AccountId": 3,
"DateDue": "2025-04-24T09:23:03.3431384-07:00",
"BillingType": {
"Id": 1,
"Description": "sample string 2"
},
"Card": {
"PaymentMethodGroupId": 1,
"Name": "sample string 1",
"Number": "sample string 2",
"ExpiryMonth": 3,
"ExpiryYear": 4
}
}
]
<PaymentPlans xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<PaymentPlan>
<AccountId>3</AccountId>
<AmountDue>2</AmountDue>
<BillingType>
<Description>sample string 2</Description>
<Id>1</Id>
</BillingType>
<Card>
<ExpiryMonth>3</ExpiryMonth>
<ExpiryYear>4</ExpiryYear>
<Name>sample string 1</Name>
<Number>sample string 2</Number>
<PaymentMethodGroupId>1</PaymentMethodGroupId>
</Card>
<DateDue>2025-04-24T09:23:03.3431384-07:00</DateDue>
<Id>1</Id>
</PaymentPlan>
<PaymentPlan>
<AccountId>3</AccountId>
<AmountDue>2</AmountDue>
<BillingType>
<Description>sample string 2</Description>
<Id>1</Id>
</BillingType>
<Card>
<ExpiryMonth>3</ExpiryMonth>
<ExpiryYear>4</ExpiryYear>
<Name>sample string 1</Name>
<Number>sample string 2</Number>
<PaymentMethodGroupId>1</PaymentMethodGroupId>
</Card>
<DateDue>2025-04-24T09:23:03.3431384-07:00</DateDue>
<Id>1</Id>
</PaymentPlan>
</PaymentPlans>
Change | Version | Description | Contract | Old | New |
---|---|---|---|---|---|
Parameter Changed | 15.0.0 | sessionKey has been marked as required. | Required |