GET api/TaxTemplateDetail/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TaxTemplateDetail
NameDescriptionTypeAdditional information
TaxTemplateDetailId

integer

None.

TaxTemplateId

integer

None.

TaxId

integer

None.

Tax

Tax

None.

TaxTemplate

TaxTemplate

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TaxTemplateDetailId": 1,
  "TaxTemplateId": 2,
  "TaxId": 3,
  "Tax": {
    "TaxId": 1,
    "TaxName": "sample string 2",
    "DisplayName": "sample string 3",
    "Rate": 4.1,
    "TaxTypeId": 5,
    "TaxStatusId": 6,
    "CreatedDate": "2025-12-08T01:56:39.9707411+05:30",
    "CreatedBy": "sample string 8"
  },
  "TaxTemplate": {
    "TaxTemplateId": 1,
    "TaxTemplateName": "sample string 2",
    "CreatedDate": "2025-12-08T01:56:39.9707411+05:30",
    "CreatedBy": "sample string 4"
  },
  "CreatedDate": "2025-12-08T01:56:39.9707411+05:30",
  "CreatedBy": "sample string 5"
}

application/xml, text/xml

Sample:
<TaxTemplateDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <CreatedBy>sample string 5</CreatedBy>
  <CreatedDate>2025-12-08T01:56:39.9707411+05:30</CreatedDate>
  <Tax>
    <CreatedBy>sample string 8</CreatedBy>
    <CreatedDate>2025-12-08T01:56:39.9707411+05:30</CreatedDate>
    <DisplayName>sample string 3</DisplayName>
    <Rate>4.1</Rate>
    <TaxId>1</TaxId>
    <TaxName>sample string 2</TaxName>
    <TaxStatusId>6</TaxStatusId>
    <TaxTypeId>5</TaxTypeId>
  </Tax>
  <TaxId>3</TaxId>
  <TaxTemplate>
    <CreatedBy>sample string 4</CreatedBy>
    <CreatedDate>2025-12-08T01:56:39.9707411+05:30</CreatedDate>
    <TaxTemplateId>1</TaxTemplateId>
    <TaxTemplateName>sample string 2</TaxTemplateName>
  </TaxTemplate>
  <TaxTemplateDetailId>1</TaxTemplateDetailId>
  <TaxTemplateId>2</TaxTemplateId>
</TaxTemplateDetail>