POST api/taxpaid/refresh
Request Information
URI Parameters
None.
Body Parameters
TaxDeclarePaidQueryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectCode | string |
None. |
|
| ItemCode | string |
None. |
|
| PeriodStart | string |
None. |
|
| PeriodEnd | string |
None. |
|
| PaidStart | string |
None. |
|
| PaidEnd | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"projectCode": "sample string 1",
"itemCode": "sample string 2",
"periodStart": "sample string 3",
"periodEnd": "sample string 4",
"paidStart": "sample string 5",
"paidEnd": "sample string 6"
}
application/xml, text/xml
Sample:
<TaxDeclarePaidQueryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAccTax.Declaration.Shared.Dtos"> <ItemCode>sample string 2</ItemCode> <PaidEnd>sample string 6</PaidEnd> <PaidStart>sample string 5</PaidStart> <PeriodEnd>sample string 4</PeriodEnd> <PeriodStart>sample string 3</PeriodStart> <ProjectCode>sample string 1</ProjectCode> </TaxDeclarePaidQueryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDataOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| State | ResponseState |
None. |
|
| SubState | ResponseSubStateCode |
None. |
|
| Data | boolean |
None. |
|
| Msg | string |
None. |
|
| TaskType | TaxTaskType |
None. |
Response Formats
application/json, text/json
Sample:
{
"state": 1000,
"subState": 0,
"data": true,
"msg": "sample string 2",
"taskType": 3
}
application/xml, text/xml
Sample:
<ResponseDataOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAcc.TaxDeclaration.Service.Models"> <Data>true</Data> <Msg>sample string 2</Msg> <State>OK</State> <SubState>OK</SubState> <TaskType>已认证抵扣发票</TaskType> </ResponseDataOfboolean>