GET api/SaiSDContractBilling/GetContractBilling/{accountId}/{companyId}/{contractNum}/{invoiceNum}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | integer |
Required |
|
| companyId | string |
Required |
|
| contractNum | string |
Required |
|
| invoiceNum | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContractBillingInvoice| Name | Description | Type | Additional information |
|---|---|---|---|
| SeqNum | integer |
None. |
|
| ContractNum | string |
None. |
|
| ScheduleDate | date |
None. |
|
| BillAmount | decimal number |
None. |
|
| BillSeqNum | integer |
None. |
|
| SelectedContractBillingId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SeqNum": 1,
"ContractNum": "sample string 2",
"ScheduleDate": "2025-12-16T20:33:21.55177+00:00",
"BillAmount": 4.0,
"BillSeqNum": 5,
"SelectedContractBillingId": 6
},
{
"SeqNum": 1,
"ContractNum": "sample string 2",
"ScheduleDate": "2025-12-16T20:33:21.55177+00:00",
"BillAmount": 4.0,
"BillSeqNum": 5,
"SelectedContractBillingId": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfContractBillingInvoice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.Model.DTO.AccountSpecific.SD">
<ContractBillingInvoice>
<BillAmount>4</BillAmount>
<BillSeqNum>5</BillSeqNum>
<ContractNum>sample string 2</ContractNum>
<ScheduleDate>2025-12-16T20:33:21.55177+00:00</ScheduleDate>
<SelectedContractBillingId>6</SelectedContractBillingId>
<SeqNum>1</SeqNum>
</ContractBillingInvoice>
<ContractBillingInvoice>
<BillAmount>4</BillAmount>
<BillSeqNum>5</BillSeqNum>
<ContractNum>sample string 2</ContractNum>
<ScheduleDate>2025-12-16T20:33:21.55177+00:00</ScheduleDate>
<SelectedContractBillingId>6</SelectedContractBillingId>
<SeqNum>1</SeqNum>
</ContractBillingInvoice>
</ArrayOfContractBillingInvoice>