POST api/receipt/fundsshortfall
Records funds from office account into client account and then to client if necessary. Processes this receipt API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The receipt funds shortfall data contract supplied with the request.
ReceiptFundsShortfallDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Date |
The date, expressed as a date and time. |
date |
None. |
| BankAccountId |
The unique identifier of the related bank account resource. |
integer |
None. |
| OfficeAccountId |
The unique identifier of the related office account resource. |
integer |
None. |
| RecipientAccountId |
The unique identifier of the related recipient account resource. |
integer |
None. |
| Amount |
The amount value. |
decimal number |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Date": "2026-08-05T00:17:26.7981506Z",
"BankAccountId": 1,
"OfficeAccountId": 2,
"RecipientAccountId": 1,
"Amount": 3.0
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.