POST v2/TaxCalculation
Returns applicable taxes for the Catalog Items in the body of the call. Only valid for Tax Exclusive locations, which apply taxes in addition to the selling price.
Information:
Base URL:
https://api.covasoft.net/taxes
Request Information
URI Parameters
None.
Body Parameters
The Catalog Items you want to get the Taxes for see above for Example
TEPTaxCalculationRequestName | Description | Type | Additional information |
---|---|---|---|
CompanyId | integer |
None. |
|
EntityId | integer |
None. |
|
LineItems | Collection of LineItem |
None. |
Request Formats
application/json, text/json
Sample:
{ "CompanyId": 1, "EntityId": 2, "LineItems": [ { "LineNumber": 1, "ProductCatalogId": "4bef8434-f237-4b17-8dac-1b8ec6081acb", "Quantity": 3.1, "Price": 4.1, "BasePriceListPrice": 5.1 }, { "LineNumber": 1, "ProductCatalogId": "4bef8434-f237-4b17-8dac-1b8ec6081acb", "Quantity": 3.1, "Price": 4.1, "BasePriceListPrice": 5.1 } ] }
Response Information
Resource Description
The Taxes for the Catalog Items
TEPTaxCalculationResultName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
SaleId | globally unique identifier |
None. |
|
CompanyId | integer |
None. |
|
EntityId | integer |
None. |
|
LineItems | Collection of TaxLineItem |
None. |
|
Status | string |
None. |
|
TaxCalculationDateUtc | date |
None. |
|
TaxTotals | Collection of Object |
None. |
|
TotalTaxAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "c4914004-1164-4961-940d-d3f3b68ac3cc", "SaleId": "cfe88cb3-05fd-4134-9ded-fb8cec065ecb", "CompanyId": 3, "EntityId": 4, "LineItems": [ { "LineNumber": "sample string 1", "ProductCatalogId": "da215f5a-e82d-42bf-b034-534f54d391a2", "Quantity": 3.1, "Price": 4.1, "Tax": 5.1, "UnroundedTax": 6.1, "Taxable": 7, "TaxDetails": [ {}, {} ] }, { "LineNumber": "sample string 1", "ProductCatalogId": "da215f5a-e82d-42bf-b034-534f54d391a2", "Quantity": 3.1, "Price": 4.1, "Tax": 5.1, "UnroundedTax": 6.1, "Taxable": 7, "TaxDetails": [ {}, {} ] } ], "Status": "sample string 5", "TaxCalculationDateUtc": "2024-11-25T11:46:02.7324023+00:00", "TaxTotals": [ {}, {} ], "TotalTaxAmount": 7.1 }