GET api/Dealers/{id}/SalesTax
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SalesTaxDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| DealerId | integer |
None. |
|
| SalesTax | decimal number |
None. |
|
| TaxFreight | boolean |
None. |
|
| GPPercent | decimal number |
None. |
|
| RoundToNearestDollar | boolean |
None. |
|
| IsDefaultFreightPercent | boolean |
None. |
|
| DefaultFreight | decimal number |
None. |
|
| DefaultDeposit | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"DealerId": 1,
"SalesTax": 2.0,
"TaxFreight": true,
"GPPercent": 1.0,
"RoundToNearestDollar": true,
"IsDefaultFreightPercent": true,
"DefaultFreight": 1.0,
"DefaultDeposit": 1.0
}
text/html, multipart/form-data, application/zip
Sample:
{"DealerId":1,"SalesTax":2.0,"TaxFreight":true,"GPPercent":1.0,"RoundToNearestDollar":true,"IsDefaultFreightPercent":true,"DefaultFreight":1.0,"DefaultDeposit":1.0}
application/xml, text/xml
Sample:
<SalesTaxDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DentaCad.DTO"> <DealerId>1</DealerId> <DefaultDeposit>1</DefaultDeposit> <DefaultFreight>1</DefaultFreight> <GPPercent>1</GPPercent> <IsDefaultFreightPercent>true</IsDefaultFreightPercent> <RoundToNearestDollar>true</RoundToNearestDollar> <SalesTax>2</SalesTax> <TaxFreight>true</TaxFreight> </SalesTaxDTO>