GET api/SupplierCustomerExemptionSchedule/GetByID?Id={Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

SupplierCustomerExemptionSchedule
NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

Id

integer

None.

SupplierCustomerId

integer

None.

TaxPrcnt

integer

None.

TaxTypeId

integer

None.

CompanyName

string

None.

TaxName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FromDate": "2025-10-29T13:13:56.8850192+05:00",
  "ToDate": "2025-10-29T13:13:56.8850192+05:00",
  "Id": 3,
  "SupplierCustomerId": 4,
  "TaxPrcnt": 5,
  "TaxTypeId": 6,
  "CompanyName": "sample string 7",
  "TaxName": "sample string 8"
}

application/xml, text/xml

Sample:
<SupplierCustomerExemptionSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Architecture.Model.Inventory">
  <CompanyName>sample string 7</CompanyName>
  <FromDate>2025-10-29T13:13:56.8850192+05:00</FromDate>
  <Id>3</Id>
  <SupplierCustomerId>4</SupplierCustomerId>
  <TaxName>sample string 8</TaxName>
  <TaxPrcnt>5</TaxPrcnt>
  <TaxTypeId>6</TaxTypeId>
  <ToDate>2025-10-29T13:13:56.8850192+05:00</ToDate>
</SupplierCustomerExemptionSchedule>