POST dz_api/AaService/SearchTax

代账服务-获得报税信息

Request Information

URI Parameters

None.

Body Parameters

SearchTaxPara
NameDescriptionTypeAdditional information
CustId

客户ID

integer

None.

Year

年份

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustId": 1,
  "Year": 2
}

application/xml, text/xml

Sample:
<SearchTaxPara xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.AccountingAgent.Models.App">
  <CustId>1</CustId>
  <Year>2</Year>
</SearchTaxPara>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

代账服务-获得报税信息

Collection of SearchTaxResult
NameDescriptionTypeAdditional information
Month

月份

integer

None.

Amount

税额

decimal number

None.

Status

申报状态

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Month": 1,
    "Amount": 2.0,
    "Status": 3
  },
  {
    "Month": 1,
    "Amount": 2.0,
    "Status": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfSearchTaxResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.AccountingAgent.Models.App">
  <SearchTaxResult>
    <Amount>2</Amount>
    <Month>1</Month>
    <Status>3</Status>
  </SearchTaxResult>
  <SearchTaxResult>
    <Amount>2</Amount>
    <Month>1</Month>
    <Status>3</Status>
  </SearchTaxResult>
</ArrayOfSearchTaxResult>