POST api/Parameter/GetTaxTypeList

Request Information

URI Parameters

None.

Body Parameters

GetTaxTypeListMobileRequest

None.

Request Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<GetTaxTypeListMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile" />

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetTaxTypeListMobileRequest'.

Response Information

Resource Description

GetTaxTypeListMobileResponse
NameDescriptionTypeAdditional information
TaxTypeList

Collection of TaxTypeMobileModel

None.

Result

ResultType

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TaxTypeList": [
    {
      "TaxTypeCode": "sample string 1",
      "Description": "sample string 2",
      "TaxTypeId": 3.0
    },
    {
      "TaxTypeCode": "sample string 1",
      "Description": "sample string 2",
      "TaxTypeId": 3.0
    }
  ],
  "Result": 0,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<GetTaxTypeListMobileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">
  <_x003C_ErrorMessage_x003E_k__BackingField>sample string 1</_x003C_ErrorMessage_x003E_k__BackingField>
  <_x003C_Result_x003E_k__BackingField>Success</_x003C_Result_x003E_k__BackingField>
  <TaxTypeList>
    <TaxTypeMobileModel>
      <Description>sample string 2</Description>
      <TaxTypeCode>sample string 1</TaxTypeCode>
      <TaxTypeId>3</TaxTypeId>
    </TaxTypeMobileModel>
    <TaxTypeMobileModel>
      <Description>sample string 2</Description>
      <TaxTypeCode>sample string 1</TaxTypeCode>
      <TaxTypeId>3</TaxTypeId>
    </TaxTypeMobileModel>
  </TaxTypeList>
</GetTaxTypeListMobileResponse>