查询填写合同模板任务结果

更新时间:2024-04-25 20:12:13

接口描述

可使用此接口查询用户在“填写文件模板页面”上输入的内容及填写任务状态等信息。

特别说明:“填写文件模板页面”链接必须通过【获取填写合同模板页面】接口获取。

接口地址&请求方法

接口地址:https://{host}/v3/doc-templates/fill-task-result

请求方法:POST

请求头格式

具体请求头参数,请查看公共请求头格式

请求参数

参数名称

参数类型

必选

参数位置

参数说明

docTemplateId

string

body

文件模板ID

fillTaskId

string

body

填写任务ID

响应参数

展开全部参数参数名称

参数类型

必选

参数说明

code

int32

业务码,0表示成功,非0表示异常。

message

string

业务信息

请根据 code 来判断错误情况,不应该依赖 message 匹配,因为 message 可能会调整。

data(点击“+”展开详情)

object

业务数据

fillTaskStatus

string

填写状态

1 - 待填写

2 - 填写完成

3 - 填写任务已过期(链接超过30天失效未填写)

fileId

string

填写完成后的文件ID,仅填写完成时返回

components

array

填充控件信息




componentId

string

控件ID

componentKey

string

件Key

componentValue

string

控件填充值

originCustomComponentId

string

来源自定义控件ID

请求示例

{
  "docTemplateId": "ff36b8c******45b2e9ff6",
  "fillTaskId": "413ab12*******a7c52711e364"
}

响应示例

{
    "code": 0,
    "message": "成功",
    "data": {
        "fillTaskStatus": "2",
        "fileId": "2fabe6a*****71a9f09e733",
        "components": [
            {
                "componentId": "319feda*****5798b01ff146",
                "componentKey": null,
                "componentValue": "这里是填充内容",
                "originCustomComponentId": null
            },
            {
                "componentId": "7e410ca******15c762530f5",
                "componentKey": null,
                "componentValue": "2024-04-23",
                "originCustomComponentId": null
            }
        ]
    }
}

错误码

点击查看错误码

我要纠错