POST api/InvoicesTotalswBody
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
InvoicesTotalResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Month | integer |
None. |
|
| Year | integer |
None. |
|
| SubTotalAmount | decimal number |
None. |
|
| TotalAmount | decimal number |
None. |
|
| TotalTax | decimal number |
None. |
|
| TotalWithholdings | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Month": 1,
"Year": 2,
"SubTotalAmount": 3.0,
"TotalAmount": 4.0,
"TotalTax": 5.0,
"TotalWithholdings": 6.0
}
application/xml, text/xml
Sample:
<InvoicesTotalResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CIMA_PCG_FacturasTotales.Models"> <Month>1</Month> <SubTotalAmount>3</SubTotalAmount> <TotalAmount>4</TotalAmount> <TotalTax>5</TotalTax> <TotalWithholdings>6</TotalWithholdings> <Year>2</Year> </InvoicesTotalResult>