POST api/checkingaccounts/movements/pendingBalanceBySales?currencyCode={currencyCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| currencyCode | CurrencyCodeEnum |
Required |
Body Parameters
Collection of integerRequest Formats
application/json, text/json
Sample:
[ 1, 2 ]
text/xml
Sample:
<ArrayOflong xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <long>1</long> <long>2</long> </ArrayOflong>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of SalePendingBalanceData| Name | Description | Type | Additional information |
|---|---|---|---|
| SaleID | integer |
None. |
|
| PendingBalance | decimal number |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SaleID": 1,
"PendingBalance": 2.0,
"ID": 1
},
{
"SaleID": 1,
"PendingBalance": 2.0,
"ID": 1
}
]
text/xml
Sample:
<ArrayOfSalePendingBalanceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">
<SalePendingBalanceData>
<ID>1</ID>
<PendingBalance>2</PendingBalance>
<SaleID>1</SaleID>
</SalePendingBalanceData>
<SalePendingBalanceData>
<ID>1</ID>
<PendingBalance>2</PendingBalance>
<SaleID>1</SaleID>
</SalePendingBalanceData>
</ArrayOfSalePendingBalanceData>