POST api/Parameter/GetAllBySearchTaxOfficeNameAndCityCode
Request Information
URI Parameters
None.
Body Parameters
GetAllBySearchTaxOfficeNameAndCityCodeMobileRequestName | Description | Type | Additional information |
---|---|---|---|
CityCode | decimal number |
None. |
|
TaxOfficeName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CityCode": 1.0, "TaxOfficeName": "sample string 2" }
application/xml, text/xml
Sample:
<GetAllBySearchTaxOfficeNameAndCityCodeMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile"> <CityCode>1</CityCode> <TaxOfficeName>sample string 2</TaxOfficeName> </GetAllBySearchTaxOfficeNameAndCityCodeMobileRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetAllBySearchTaxOfficeNameAndCityCodeMobileResponseName | Description | Type | Additional information |
---|---|---|---|
TaxOfficeList | Collection of TaxOfficeMobileModel |
None. |
|
Result | ResultType |
None. |
|
ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "TaxOfficeList": [ { "TaxOfficeName": "sample string 1", "TaxCode": "sample string 2", "CityCode": "sample string 3" }, { "TaxOfficeName": "sample string 1", "TaxCode": "sample string 2", "CityCode": "sample string 3" } ], "Result": 0, "ErrorMessage": "sample string 1" }
application/xml, text/xml
Sample:
<GetAllBySearchTaxOfficeNameAndCityCodeMobileResponse 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> <TaxOfficeList> <TaxOfficeMobileModel> <CityCode>sample string 3</CityCode> <TaxCode>sample string 2</TaxCode> <TaxOfficeName>sample string 1</TaxOfficeName> </TaxOfficeMobileModel> <TaxOfficeMobileModel> <CityCode>sample string 3</CityCode> <TaxCode>sample string 2</TaxCode> <TaxOfficeName>sample string 1</TaxOfficeName> </TaxOfficeMobileModel> </TaxOfficeList> </GetAllBySearchTaxOfficeNameAndCityCodeMobileResponse>