POST api/PreBill?authKey={authKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| authKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
PostPreBillResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| postSuccessful | boolean |
None. |
|
| errorMessage | string |
None. |
|
| stackTrace | string |
None. |
|
| BanyanPreBillId | string |
None. |
|
| PreBillChargeRecordCount | integer |
None. |
|
| postingPeriod | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"postSuccessful": true,
"errorMessage": "sample string 2",
"stackTrace": "sample string 3",
"banyanPreBillId": "sample string 4",
"preBillChargeRecordCount": 5,
"postingPeriod": "2025-12-10T14:39:17.7685825+00:00"
}
application/xml, text/xml
Sample:
<PostPreBillResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BanyanAPI.Controllers"> <BanyanPreBillId>sample string 4</BanyanPreBillId> <PreBillChargeRecordCount>5</PreBillChargeRecordCount> <errorMessage>sample string 2</errorMessage> <postSuccessful>true</postSuccessful> <postingPeriod>2025-12-10T14:39:17.7685825+00:00</postingPeriod> <stackTrace>sample string 3</stackTrace> </PostPreBillResponse>