POST api/Invoice/GetTaxExemptionCodeList

Request Information

URI Parameters

None.

Body Parameters

GetTaxExemptionCodeMobileRequest
NameDescriptionTypeAdditional information
Result

ResultType

None.

ErrorMessage

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Result": 0,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<GetTaxExemptionCodeMobileRequest 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>
</GetTaxExemptionCodeMobileRequest>

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 'GetTaxExemptionCodeMobileRequest'.

Response Information

Resource Description

GetTaxExemptionCodeMobileResponse
NameDescriptionTypeAdditional information
TaxExemptionCodeList

Collection of TaxExemptionMobileModel

None.

Result

ResultType

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TaxExemptionCodeList": [
    {
      "TaxExemptionCode": "sample string 1",
      "TaxExemptionName": "sample string 2"
    },
    {
      "TaxExemptionCode": "sample string 1",
      "TaxExemptionName": "sample string 2"
    }
  ],
  "Result": 0,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<GetTaxExemptionCodeMobileResponse 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>
  <TaxExemptionCodeList>
    <TaxExemptionMobileModel>
      <TaxExemptionCode>sample string 1</TaxExemptionCode>
      <TaxExemptionName>sample string 2</TaxExemptionName>
    </TaxExemptionMobileModel>
    <TaxExemptionMobileModel>
      <TaxExemptionCode>sample string 1</TaxExemptionCode>
      <TaxExemptionName>sample string 2</TaxExemptionName>
    </TaxExemptionMobileModel>
  </TaxExemptionCodeList>
</GetTaxExemptionCodeMobileResponse>