GET api/TaxRates

Get TaxRates List

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ListTaxRates
NameDescriptionTypeAdditional information
TaxRateId

integer

None.

TaxName

string

None.

TaxPercentage

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedDateTime

date

None.

LastUpdatedDateTime

date

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TaxRateId": 1,
    "TaxName": "sample string 2",
    "TaxPercentage": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "CreatedDateTime": "2025-07-18T16:16:13.0365543+00:00",
    "LastUpdatedDateTime": "2025-07-18T16:16:13.0365543+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1
  },
  {
    "TaxRateId": 1,
    "TaxName": "sample string 2",
    "TaxPercentage": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "CreatedDateTime": "2025-07-18T16:16:13.0365543+00:00",
    "LastUpdatedDateTime": "2025-07-18T16:16:13.0365543+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfListTaxRates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <ListTaxRates>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-07-18T16:16:13.0365543+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:16:13.0365543+00:00</LastUpdatedDateTime>
    <TaxName>sample string 2</TaxName>
    <TaxPercentage>sample string 3</TaxPercentage>
    <TaxRateId>1</TaxRateId>
  </ListTaxRates>
  <ListTaxRates>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-07-18T16:16:13.0365543+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:16:13.0365543+00:00</LastUpdatedDateTime>
    <TaxName>sample string 2</TaxName>
    <TaxPercentage>sample string 3</TaxPercentage>
    <TaxRateId>1</TaxRateId>
  </ListTaxRates>
</ArrayOfListTaxRates>