POST api/invoice/saveforlater
Save expected receipts progress
Request Information
URI Parameters
None.
Body Parameters
Collection of SaveForLaterReceiptDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| BalanceAmount | decimal number |
None. |
|
| ReceiptAmount | decimal number |
None. |
|
| Name | string |
None. |
|
| NegotiatorId | integer |
None. |
|
| OriginalTotalOutstanding | integer |
None. |
|
| Allocations | Collection of InvoiceItemAllocationDataContract |
None. |
|
| Id | integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
[
{
"BalanceAmount": 1.0,
"ReceiptAmount": 2.0,
"Name": "sample string 3",
"NegotiatorId": 4,
"OriginalTotalOutstanding": 5,
"Allocations": [
{
"Amount": 1.0,
"InvoiceItemId": 2
},
{
"Amount": 1.0,
"InvoiceItemId": 2
}
],
"Id": 6
},
{
"BalanceAmount": 1.0,
"ReceiptAmount": 2.0,
"Name": "sample string 3",
"NegotiatorId": 4,
"OriginalTotalOutstanding": 5,
"Allocations": [
{
"Amount": 1.0,
"InvoiceItemId": 2
},
{
"Amount": 1.0,
"InvoiceItemId": 2
}
],
"Id": 6
}
]
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.