POST api/land_tax/declare
Request Information
URI Parameters
None.
Body Parameters
StatementDeclareDto| Name | Description | Type | Additional information |
|---|---|---|---|
| DeclareJson | Collection of Object |
None. |
|
| IsBatch | boolean |
None. |
|
| IgnoreWarningTips | boolean |
None. |
|
| ConfirmedBizSceneCodes | Collection of string |
None. |
|
| ConfirmToken | string |
None. |
|
| IgnoreRiskPromptTips | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"declareJson": null,
"isBatch": true,
"ignoreWarningTips": true,
"confirmedBizSceneCodes": [
"sample string 1",
"sample string 2"
],
"confirmToken": "sample string 3",
"ignoreRiskPromptTips": true
}
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDataOfTaxActionResultDtoOfInt64| Name | Description | Type | Additional information |
|---|---|---|---|
| State | ResponseState |
None. |
|
| SubState | ResponseSubStateCode |
None. |
|
| Data | TaxActionResultDtoOfInt64 |
None. |
|
| Msg | string |
None. |
|
| TaskType | TaxTaskType |
None. |
|
| TaskStyle | integer |
None. |
|
| DeniedPermission | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"state": 1000,
"subState": 0,
"data": {
"result": 1,
"bizScene": {
"bizSceneCode": "sample string 1",
"bizSceneData": {},
"confirmToken": "sample string 3"
}
},
"msg": "sample string 1",
"taskType": 3,
"taskStyle": 2,
"deniedPermission": "sample string 3"
}
application/xml, text/xml
Sample:
<ResponseDataOfTaxActionResultDtoOflongAspFbluU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAcc.TaxDeclaration.Service.Models">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/LemonAccTax.Declaration.Shared.Dtos">
<d2p1:BizScene>
<d2p1:BizSceneCode>sample string 1</d2p1:BizSceneCode>
<d2p1:BizSceneData />
<d2p1:ConfirmToken>sample string 3</d2p1:ConfirmToken>
</d2p1:BizScene>
<d2p1:Result>1</d2p1:Result>
</Data>
<DeniedPermission>sample string 3</DeniedPermission>
<Msg>sample string 1</Msg>
<State>OK</State>
<SubState>OK</SubState>
<TaskStyle>2</TaskStyle>
<TaskType>已认证抵扣发票</TaskType>
</ResponseDataOfTaxActionResultDtoOflongAspFbluU>