文档介绍了调用方式,调用前,请先阅读API概览。
步骤一:调用异步提交服务
异步提交服务支持本地文件和URL文件两种方式:
URL上传的异步提交服务接口为:SubmitImportDeclarationSheetExtractJob接口。
本地文件上传的异步提交服务接口为:SubmitImportDeclarationSheetExtractJobAdvance接口。
请求参数
名称 | 类型 | 必填 | 描述 | 示例值 |
FileUrl | string | 是 | 以文档URL方式时使用。 单个文档的URL支持100页以内、100 MB以内的PDF、Word、Excel文档,支持20 MB以内的单张图片。 | https://example.com/example.pdf |
FileUrlObject | stream | 是 | 以本地文件上传方式调用接口时使用。 单个文档支持100页以内、100 MB以内的PDF、Word、Excel文档,支持20 MB以内的单张图片。 | 本地文件生成的FileInputStream |
FileName | string | 否 | 文件名需带文件类型后缀,与FileNameExtension二选一。 | example.pdf |
FileNameExtension | string | 否 | 文件类型与FileName二选一。 |
支持的文档格式:pdf、word、excel和图片(jpg、jpeg、png、bmp、gif)。
返回参数
名称 | 类型 | 描述 | 示例值 |
RequestId | string | 请求唯一ID。 | 43A29C77-405E-4CC0-BC55-EE694AD0**** |
Data | object | 返回数据。 | {"Id": "docmind-20220712-ImportDeclarationSheet-b15f****"} |
+id | string | 业务订单号,用于后续查询接口进行查询的唯一标识。 | docmind-20220712-ImportDeclarationSheet-b15f**** |
Code | string | 状态码。 | 200 |
Message | string | 状态详细信息。 | message |
示例
本接口支持本地文档上传和传入文档URL这两种调用方式。
本地文档上传调用方式的请求示例代码如下,调用SubmitImportDeclarationSheetExtractJobAdvance接口,通过fileUrlObject参数实现本地文档上传。
获取并使用AccessKey信息的方式,可参考SDK概述中不同语言的SDK使用指南。
import com.aliyun.docmind_api20220729.Client;
import com.aliyun.docmind_api20220729.models.*;
import com.aliyun.teaopenapi.models.Config;
import com.aliyun.teautil.models.RuntimeOptions;
import java.io.File;
import java.io.FileInputStream;
public static void submit() throws Exception {
// 使用默认凭证初始化Credentials Client。
com.aliyun.credentials.Client credentialClient = new com.aliyun.credentials.Client();
Config config = new Config()
// 通过credentials获取配置中的AccessKey ID
.setAccessKeyId(credentialClient.getAccessKeyId())
// 通过credentials获取配置中的AccessKey Secret
.setAccessKeySecret(credentialClient.getAccessKeySecret());
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
config.endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
Client client = new Client(config);
// 创建RuntimeObject实例并设置运行参数
RuntimeOptions runtime = new RuntimeOptions();
SubmitImportDeclarationSheetExtractJobAdvanceRequest advanceRequest = new SubmitImportDeclarationSheetExtractJobAdvanceRequest();
File file = new File("D:\\example.pdf");
advanceRequest.fileUrlObject = new FileInputStream(file);
advanceRequest.fileName = "example.pdf";
// 发起请求并处理应答或异常。
SubmitImportDeclarationSheetExtractJobResponse response = client.submitImportDeclarationSheetExtractJobAdvance(advanceRequest, runtime);
}
const Client = require('@alicloud/docmind-api20220729');
const Credential = require('@alicloud/credentials');
const Util = require('@alicloud/tea-util');
const fs = require('fs');
const getResult = async () => {
// 使用默认凭证初始化Credentials Client
const cred = new Credential.default();
const client = new Client.default({
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
endpoint: 'docmind-api.cn-hangzhou.aliyuncs.com',
// 通过credentials获取配置中的AccessKey ID
accessKeyId: cred.credential.accessKeyId,
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret: cred.credential.accessKeySecret,
type: 'access_key',
regionId: 'cn-hangzhou'
});
const advanceRequest = new Client.SubmitImportDeclarationSheetExtractJobAdvanceRequest();
const file = fs.createReadStream('./example.pdf');
advanceRequest.fileUrlObject = file;
advanceRequest.fileName = 'example.pdf';
const runtimeObject = new Util.RuntimeOptions({});
const response = await client.submitImportDeclarationSheetExtractJobAdvance(advanceRequest, runtimeObject);
return response.body;
}
from alibabacloud_docmind_api20220729.client import Client as docmind_api20220729Client
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_tea_util import models as util_models
from alibabacloud_docmind_api20220729 import models as docmind_api20220729_models
from alibabacloud_tea_util.client import Client as UtilClient
from alibabacloud_credentials.client import Client as CredClient
def submit_file():
# 使用默认凭证初始化Credentials Client。
cred=CredClient()
config = open_api_models.Config(
# 通过credentials获取配置中的AccessKey ID
access_key_id=cred.get_access_key_id(),
# 通过credentials获取配置中的AccessKey Secret
access_key_secret=cred.get_access_key_secret()
)
# 访问的域名
config.endpoint = f'docmind-api.cn-hangzhou.aliyuncs.com'
client = docmind_api20220729Client(config)
request = docmind_api20220729_models.SubmitImportDeclarationSheetExtractJobAdvanceRequest(
# file_url_object : 本地文件流
file_url_object=open("D:\example.pdf", "rb"),
# file_name :文件名称。名称必须包含文件类型
file_name='123.pdf',
# file_name_extension : 文件后缀格式。与文件名二选一
file_name_extension='pdf'
)
runtime = util_models.RuntimeOptions()
try:
# 复制代码运行请自行打印 API 的返回值
response = client.submit_import_declaration_sheet_extract_job_advance(request, runtime)
# API返回值格式层级为 body -> data -> 具体属性。可根据业务需要打印相应的结果。如下示例为打印返回的业务id格式
# 获取属性值均以小写开头,
print(response.body.data.id)
except Exception as error:
# 如有需要,请打印 error
UtilClient.assert_as_string(error.message)
import (
"fmt"
"os"
openClient "github.com/alibabacloud-go/darabonba-openapi/v2/client"
"github.com/alibabacloud-go/docmind-api-20220729/client"
"github.com/alibabacloud-go/tea-utils/v2/service"
"github.com/aliyun/credentials-go/credentials"
)
func submit() {
// 使用默认凭证初始化Credentials Client。
credential, err := credentials.NewCredential(nil)
// 通过credentials获取配置中的AccessKey ID
accessKeyId, err := credential.GetAccessKeyId()
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret, err := credential.GetAccessKeySecret()
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
var endpoint string = "docmind-api.cn-hangzhou.aliyuncs.com"
config := openClient.Config{AccessKeyId: accessKeyId, AccessKeySecret: accessKeySecret, Endpoint: &endpoint}
// 初始化client
cli, err := client.NewClient(&config)
if err != nil {
panic(err)
}
// 创建RuntimeObject实例并设置运行参数
options := service.RuntimeOptions{}
// 上传本地文档调用接口
filename := "example.pdf"
f, err := os.Open(filename)
if err != nil {
panic(err)
}
// 初始化接口request
request := client.SubmitImportDeclarationSheetExtractJobAdvanceRequest{
FileName: &filename,
FileUrlObject: f,
}
// 替换成具体异步任务提交类API接口的入参和方法,示例方法是出口报关单识别接口
response, err := cli.SubmitImportDeclarationSheetExtractJobAdvance(&request, &options)
if err != nil {
panic(err)
}
fmt.Println(response.Body.GoString())
}
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Tea;
using Tea.Utils;
public static void SubmitFile()
{
// 使用默认凭证初始化Credentials Client。
var akCredential = new Aliyun.Credentials.Client(null);
AlibabaCloud.OpenApiClient.Models.Config config = new AlibabaCloud.OpenApiClient.Models.Config
{
// 通过credentials获取配置中的AccessKey Secret
AccessKeyId = akCredential.GetAccessKeyId(),
// 通过credentials获取配置中的AccessKey Secret
AccessKeySecret = akCredential.GetAccessKeySecret(),
};
// 访问的域名
config.Endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
AlibabaCloud.SDK.Docmind_api20220729.Client client = new AlibabaCloud.SDK.Docmind_api20220729.Client(config);
//需要安装额外的依赖库--> AlibabaCloud.DarabonbaStream
Stream bodySyream = AlibabaCloud.DarabonbaStream.StreamUtil.ReadFromFilePath("<your-file-path>");
AlibabaCloud.SDK.Docmind_api20220729.Models.SubmitImportDeclarationSheetExtractJobAdvanceRequest request = new AlibabaCloud.SDK.Docmind_api20220729.Models.SubmitImportDeclarationSheetExtractJobAdvanceRequest
{
FileUrlObject = bodySyream,
FileNameExtension = "pdf"
};
AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
try
{
// 复制代码运行请自行打印 API 的返回值
client.SubmitImportDeclarationSheetExtractJobAdvance(request, runtime);
}
catch (TeaException error)
{
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
catch (Exception _error)
{
TeaException error = new TeaException(new Dictionary<string, object>
{
{ "message", _error.Message }
});
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
}
传入文档URL调用方式的请求示例代码如下,调用SubmitImportDeclarationSheetExtractJob接口,通过fileUrl参数实现传入文档URL。请注意,您传入的文档URL必须为公网可访问下载的公网URL地址,无跨域限制,URL不带特殊转义字符。
获取并使用AccessKey信息的方式,可参考SDK概述中不同语言的SDK使用指南。
import com.aliyun.docmind_api20220729.Client;
import com.aliyun.docmind_api20220729.models.*;
import com.aliyun.teaopenapi.models.Config;
public static void submit() throws Exception {
// 使用默认凭证初始化Credentials Client。
com.aliyun.credentials.Client credentialClient = new com.aliyun.credentials.Client();
Config config = new Config()
// 通过credentials获取配置中的AccessKey ID
.setAccessKeyId(credentialClient.getAccessKeyId())
// 通过credentials获取配置中的AccessKey Secret
.setAccessKeySecret(credentialClient.getAccessKeySecret());
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
config.endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
Client client = new Client(config);
SubmitImportDeclarationSheetExtractJobRequest request = new SubmitImportDeclarationSheetExtractJobRequest();
request.fileName = "example.pdf";
request.fileUrl = "https://example.com/example.pdf";
SubmitImportDeclarationSheetExtractJobResponse response = client.submitImportDeclarationSheetExtractJob(sb);
}
const Client = require('@alicloud/docmind-api20220729');
const Credential = require('@alicloud/credentials');
const getResult = async () => {
// 使用默认凭证初始化Credentials Client
const cred = new Credential.default();
const client = new Client.default({
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
endpoint: 'docmind-api.cn-hangzhou.aliyuncs.com',
// 通过credentials获取配置中的AccessKey ID
accessKeyId: cred.credential.accessKeyId,
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret: cred.credential.accessKeySecret,
type: 'access_key',
regionId: 'cn-hangzhou'
});
const request = new Client.SubmitImportDeclarationSheetExtractJobRequest();
request.fileName = 'example.pdf';
request.fileUrl = 'https://example.com/example.pdf';
const response = await client.submitImportDeclarationSheetExtractJob(request);
return response.body;
}
from alibabacloud_docmind_api20220729.client import Client as docmind_api20220729Client
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_docmind_api20220729 import models as docmind_api20220729_models
from alibabacloud_tea_util.client import Client as UtilClient
from alibabacloud_credentials.client import Client as CredClient
def submit_url():
# 使用默认凭证初始化Credentials Client。
cred=CredClient()
config = open_api_models.Config(
# 通过credentials获取配置中的AccessKey ID
access_key_id=cred.get_access_key_id(),
# 通过credentials获取配置中的AccessKey Secret
access_key_secret=cred.get_access_key_secret()
)
# 访问的域名
config.endpoint = f'docmind-api.cn-hangzhou.aliyuncs.com'
client = docmind_api20220729Client(config)
request = docmind_api20220729_models.SubmitImportDeclarationSheetExtractJobRequest(
# file_url : 文件url地址
file_url='https://example.pdf',
# file_name :文件名称。名称必须包含文件类型
file_name='example.pdf',
# file_name_extension : 文件后缀格式。与文件名二选一
file_name_extension='pdf'
)
try:
# 复制代码运行请自行打印 API 的返回值
response = client.submit_import_declaration_sheet_extract_job(request)
# API返回值格式层级为 body -> data -> 具体属性。可根据业务需要打印相应的结果。如下示例为打印返回的业务id格式
# 获取属性值均以小写开头,
print(response.body.data.id)
except Exception as error:
# 如有需要,请打印 error
UtilClient.assert_as_string(error.message)
import (
"fmt"
openClient "github.com/alibabacloud-go/darabonba-openapi/v2/client"
"github.com/alibabacloud-go/docmind-api-20220729/client"
"github.com/aliyun/credentials-go/credentials"
)
func submit() {
// 使用默认凭证初始化Credentials Client。
credential, err := credentials.NewCredential(nil)
// 通过credentials获取配置中的AccessKey ID
accessKeyId, err := credential.GetAccessKeyId()
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret, err := credential.GetAccessKeySecret()
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
var endpoint string = "docmind-api.cn-hangzhou.aliyuncs.com"
config := openClient.Config{AccessKeyId: accessKeyId, AccessKeySecret: accessKeySecret, Endpoint: &endpoint}
// 初始化client
cli, err := client.NewClient(&config)
if err != nil {
panic(err)
}
// 上传本地文档调用接口
fileUrl := "https://example.com/example.pdf"
filename := "example.pdf"
// 初始化接口request
request := client.SubmitImportDeclarationSheetExtractJobRequest{
FileName: &filename,
FileUrl: &fileUrl,
}
// 替换成具体异步任务提交类API接口的入参和方法,示例方法是出口报关单识别接口
response, err := cli.SubmitImportDeclarationSheetExtractJob(&request)
if err != nil {
panic(err)
}
fmt.Println(response.Body.GoString())
}
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Tea;
using Tea.Utils;
public static void SubmitUrl()
{
// 使用默认凭证初始化Credentials Client。
var akCredential = new Aliyun.Credentials.Client(null);
AlibabaCloud.OpenApiClient.Models.Config config = new AlibabaCloud.OpenApiClient.Models.Config
{
// 通过credentials获取配置中的AccessKey Secret
AccessKeyId = akCredential.GetAccessKeyId(),
// 通过credentials获取配置中的AccessKey Secret
AccessKeySecret = akCredential.GetAccessKeySecret(),
};
// 访问的域名
config.Endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
AlibabaCloud.SDK.Docmind_api20220729.Client client = new AlibabaCloud.SDK.Docmind_api20220729.Client(config);
AlibabaCloud.SDK.Docmind_api20220729.Models.SubmitImportDeclarationSheetExtractJobRequest request = new AlibabaCloud.SDK.Docmind_api20220729.Models.SubmitImportDeclarationSheetExtractJobRequest
{
FileUrl = "https://example.pdf",
FileNameExtension = "pdf"
};
try
{
// 复制代码运行请自行打印 API 的返回值
client.SubmitImportDeclarationSheetExtractJob(request);
}
catch (TeaException error)
{
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
catch (Exception _error)
{
TeaException error = new TeaException(new Dictionary<string, object>
{
{ "message", _error.Message }
});
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
}
use AlibabaCloud\SDK\Docmindapi\V20220729\Docmindapi;
use AlibabaCloud\SDK\Docmindapi\V20220729\Models\SubmitImportDeclarationSheetExtractJobRequest;
use Darabonba\OpenApi\Models\Config;
use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
use AlibabaCloud\Tea\Exception\TeaUnableRetryError;
use AlibabaCloud\Credentials\Credential;
// 使用默认凭证初始化Credentials Client。
$bearerToken = new Credential();
$config = new Config();
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
$config->endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
// 通过credentials获取配置中的AccessKey ID
$config->accessKeyId = $bearerToken->getCredential()->getAccessKeyId();
// 通过credentials获取配置中的AccessKey Secret
$config->accessKeySecret = $bearerToken->getCredential()->getAccessKeySecret();
$config->type = "access_key";
$config->regionId = "cn-hangzhou";
$client = new Docmindapi($config);
$request = new SubmitImportDeclarationSheetExtractJobRequest();
$runtime = new RuntimeOptions();
$runtime->maxIdleConns = 3;
$runtime->connectTimeout = 10000;
$runtime->readTimeout = 10000;
$request->fileName = "example.pdf";
$request->fileUrl = "https://example.com/example.pdf";
try {
$response = $client->submitImportDeclarationSheetExtractJob($request, $runtime);
var_dump($response->toMap());
} catch (TeaUnableRetryError $e) {
var_dump($e->getMessage());
var_dump($e->getErrorInfo());
var_dump($e->getLastException());
var_dump($e->getLastRequest());
}
正常返回示例
JSON
格式
{
"RequestId": "43A29C77-405E-4CC0-BC55-EE694AD0****",
"Data": {
"Id": "docmind-20220712-ExportDeclarationSheet-b15f****"
}
}
步骤二:轮询结果查询服务GetSingleDocumentExtractResult接口
调用查询接口的入参ID就是前面异步任务提交接口返回的出参ID,查询结果有处理中、处理成功、处理失败三种情况。建议每10秒轮询一次,最多轮询10分钟。若明确返回Completed为true或者超过轮询最大时间,则终止轮询。
请求参数
名称 | 类型 | 必填 | 描述 | 示例值 |
Id | string | 是 | 需要查询的业务订单号,订单号从提交接口的返回结果中获取。 | docmind-20220712-ImportDeclarationSheet-b15f**** |
返回参数
名称 | 类型 | 描述 | 示例值 |
RequestId | string | 请求唯一ID。 | 43A29C77-405E-4CC0-BC55-EE694AD0**** |
Completed | boolean | 异步任务是否处理完成,false表示任务仍在处理中,true代表任务处理完成,有处理成功或处理失败的明确结果。 | true |
Status | String | 异步任务处理完成的状态,最终处理结束后的状态。Success为处理成功,Fail为处理失败。 | Success |
Data | string | 返回数据,文档智能解析的解析结果,输出包括文档内容及样式、文档版面信息以及文档逻辑信息(层级树、表格理解、表格及段落KV)的JSON数据结构返回。 | |
Code | string | 状态码。 | 200 |
Message | string | 详细信息。 | message |
示例
调用出口报关单识别接口的结果查询类API示例代码如下,调用getSingleDocumentExtractResult接口,通过ID参数传入查询流水号。
获取并使用AccessKey信息的方式,可参考SDK概述中不同语言的SDK使用指南。
import com.aliyun.docmind_api20220729.Client;
import com.aliyun.docmind_api20220729.models.*;
import com.aliyun.teaopenapi.models.Config;
public static void submit() throws Exception {
// 使用默认凭证初始化Credentials Client。
com.aliyun.credentials.Client credentialClient = new com.aliyun.credentials.Client();
Config config = new Config()
// 通过credentials获取配置中的AccessKey ID
.setAccessKeyId(credentialClient.getAccessKeyId())
// 通过credentials获取配置中的AccessKey Secret
.setAccessKeySecret(credentialClient.getAccessKeySecret());
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
config.endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
Client client = new Client(config);
GetSingleDocumentExtractResultRequest resultRequest = new GetSingleDocumentExtractResultRequest();
resultRequest.id = "docmind-20220902-ImportDeclarationSheet-824b****";
GetSingleDocumentExtractResultResponse response = client.getSingleDocumentExtractResult(request);
System.out.println(response.getBody().getData());
}
const Client = require('@alicloud/docmind-api20220729');
const Credential = require('@alicloud/credentials');
const getResult = async () => {
// 使用默认凭证初始化Credentials Client
const cred = new Credential.default();
const client = new Client.default({
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
endpoint: 'docmind-api.cn-hangzhou.aliyuncs.com',
// 通过credentials获取配置中的AccessKey ID
accessKeyId: cred.credential.accessKeyId,
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret: cred.credential.accessKeySecret,
type: 'access_key',
regionId: 'cn-hangzhou'
});
const resultRequest = new Client.GetSingleDocumentExtractResultRequest();
resultRequest.id = "docmind-20220712-ImportDeclarationSheet-b15f****";
const response = await client.getSingleDocumentExtractResult(resultRequest);
return response.body;
}
from alibabacloud_docmind_api20220729.client import Client as docmind_api20220729Client
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_docmind_api20220729 import models as docmind_api20220729_models
from alibabacloud_tea_util.client import Client as UtilClient
from alibabacloud_credentials.client import Client as CredClient
def query():
# 使用默认凭证初始化Credentials Client。
cred=CredClient()
config = open_api_models.Config(
# 通过credentials获取配置中的AccessKey ID
access_key_id=cred.get_access_key_id(),
# 通过credentials获取配置中的AccessKey Secret
access_key_secret=cred.get_access_key_secret()
)
# 访问的域名
config.endpoint = f'docmind-api.cn-hangzhou.aliyuncs.com'
client = docmind_api20220729Client(config)
request = docmind_api20220729_models.GetSingleDocumentExtractResultRequest(
# id : 任务提交接口返回的id
id='docmind-20220902-ImportDeclarationSheet-824b****'
)
try:
# 复制代码运行请自行打印 API 的返回值
response = client.get_single_document_extract_result(request)
# API返回值格式层级为 body -> data -> 具体属性。可根据业务需要打印相应的结果。获取属性值均以小写开头
# 获取异步任务处理情况,可根据response.body.completed判断是否需要继续轮询结果
print(response.body.completed)
# 获取返回结果。建议先把response.body.data转成json,然后再从json里面取具体需要的值。
print(response.body.data)
except Exception as error:
# 如有需要,请打印 error
UtilClient.assert_as_string(error.message)
import (
"fmt"
openClient "github.com/alibabacloud-go/darabonba-openapi/v2/client"
"github.com/alibabacloud-go/docmind-api-20220729/client"
"github.com/aliyun/credentials-go/credentials"
)
func query() {
// 使用默认凭证初始化Credentials Client。
credential, err := credentials.NewCredential(nil)
// 通过credentials获取配置中的AccessKey ID
accessKeyId, err := credential.GetAccessKeyId()
// 通过credentials获取配置中的AccessKey Secret
accessKeySecret, err := credential.GetAccessKeySecret()
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
var endpoint string = "docmind-api.cn-hangzhou.aliyuncs.com"
config := openClient.Config{AccessKeyId: accessKeyId, AccessKeySecret: accessKeySecret, Endpoint: &endpoint}
// 初始化client
cli, err := client.NewClient(&config)
if err != nil {
panic(err)
}
id := "docmind-20230201-ImportDeclarationSheet-********"
request := client.GetSingleDocumentExtractResultRequest{
Id: &id,
}
// 替换成具体结果查询类API接口的方法,示例方法是出口报关单识别接口
response, err := cli.GetSingleDocumentExtractResult(&request)
if err != nil {
panic(err)
}
fmt.Println(response.Body.GoString())
}
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Tea;
using Tea.Utils;
public static void GetResult()
{
// 使用默认凭证初始化Credentials Client。
var akCredential = new Aliyun.Credentials.Client(null);
AlibabaCloud.OpenApiClient.Models.Config config = new AlibabaCloud.OpenApiClient.Models.Config
{
// 通过credentials获取配置中的AccessKey Secret
AccessKeyId = akCredential.GetAccessKeyId(),
// 通过credentials获取配置中的AccessKey Secret
AccessKeySecret = akCredential.GetAccessKeySecret(),
};
// 访问的域名
config.Endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
AlibabaCloud.SDK.Docmind_api20220729.Client client = new AlibabaCloud.SDK.Docmind_api20220729.Client(config);
AlibabaCloud.SDK.Docmind_api20220729.Models.GetSingleDocumentExtractResultRequest request = new AlibabaCloud.SDK.Docmind_api20220729.Models.GetSingleDocumentExtractResultRequest
{
Id = "docmind-20220712-ImportDeclarationSheet-b15f****"
};
AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
try
{
// 复制代码运行请自行打印 API 的返回值
client.GetSingleDocumentExtractResult(request);
}
catch (TeaException error)
{
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
catch (Exception _error)
{
TeaException error = new TeaException(new Dictionary<string, object>
{
{ "message", _error.Message }
});
// 如有需要,请打印 error
AlibabaCloud.TeaUtil.Common.AssertAsString(error.Message);
}
}
use AlibabaCloud\SDK\Docmindapi\V20220729\Docmindapi;
use AlibabaCloud\SDK\Docmindapi\V20220729\Models\GetSingleDocumentExtractResultRequest;
use Darabonba\OpenApi\Models\Config;
use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
use AlibabaCloud\Tea\Exception\TeaUnableRetryError;
use AlibabaCloud\Credentials\Credential;
// 使用默认凭证初始化Credentials Client。
$bearerToken = new Credential();
$config = new Config();
// 访问的域名,支持ipv4和ipv6两种方式,ipv6请使用docmind-api-dualstack.cn-hangzhou.aliyuncs.com
$config->endpoint = "docmind-api.cn-hangzhou.aliyuncs.com";
// 通过credentials获取配置中的AccessKey ID
$config->accessKeyId = $bearerToken->getCredential()->getAccessKeyId();
// 通过credentials获取配置中的AccessKey Secret
$config->accessKeySecret = $bearerToken->getCredential()->getAccessKeySecret();
$config->type = "access_key";
$config->regionId = "cn-hangzhou";
$client = new Docmindapi($config);
$request = new GetSingleDocumentExtractResultRequest();
$request->id = "docmind-20220712-ImportDeclarationSheet-b15f****";
$runtime = new RuntimeOptions();
$runtime->maxIdleConns = 3;
$runtime->connectTimeout = 10000;
$runtime->readTimeout = 10000;
try {
$response = $client->getSingleDocumentExtractResult($request, $runtime);
var_dump($response->toMap());
} catch (TeaUnableRetryError $e) {
var_dump($e->getMessage());
var_dump($e->getErrorInfo());
var_dump($e->getLastException());
var_dump($e->getLastRequest());
}
查询结果有处理中、处理成功、处理失败三种情况,分别说明每种情况的返回结果示例。
处理中的返回结果
{
"RequestId": "2AABD2C2-D24F-12F7-875D-683A27C3****",
"Completed": false,
"Code": "DocProcessing",
"Message": "Document processing",
"HostId": "ocr-api.cn-hangzhou.aliyuncs.com",
"Recommend": "https://next.api.aliyun.com/troubleshoot?q=DocProcessing&product=docmind-api"
}
处理中:Completed会返回false,表示任务没有处理结束,仍在处理中。这种情况需要继续轮询,直到明确返回Completed为true或者超过轮询最大时间。
处理失败的返回结果
{
"RequestId": "A8EF3A36-1380-1116-A39E-B377BE27****",
"Completed": true,
"Status": "Fail",
"Code": "UrlNotLegal",
"Message": "Failed to process the document. The document url you provided is not legal.",
"HostId": "docmind-api.cn-hangzhou.aliyuncs.com",
"Recommend": "https://next.api.aliyun.com/troubleshoot?q=IDP.UrlNotLegal&product=docmind-api"
}
处理失败时:Completed会返回true,表示任务处理结束;Status会返回“Fail”,表示处理失败;同时会返回失败Code和详细原因Message。访问错误码可以查看错误码详细介绍。
处理成功的返回结果
{
"Completed":true,
"Status":"Success",
"RequestId":"8238E9D6-713E-1933-8C7B-7C362194******",
"Data":{
"result":{
"kvListInfo":[
[
[
{
"valuePos":[
{
"width":105,
"x":90,
"y":497,
"pageId":1,
"height":19
}
],
"parsedValue":[
"8471419000"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"8471419000",
"width":105,
"x":90,
"y":497,
"pageId":1,
"value":"8471419000",
"height":19
}
],
"extractedValue":[
"8471419000"
],
"keyDesc":[
"商品编号"
],
"value":[
"8471419000"
],
"key":[
"CodeTS"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":106,
"x":190,
"y":497,
"pageId":1,
"height":20
}
],
"parsedValue":[
"便携式计算机"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"便携式计算机",
"width":106,
"x":190,
"y":497,
"pageId":1,
"value":"便携式计算机",
"height":20
}
],
"extractedValue":[
"便携式计算机"
],
"keyDesc":[
"商品名称"
],
"value":[
"便携式计算机"
],
"key":[
"GName"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":439,
"x":190,
"y":521,
"pageId":1,
"height":21
},
{
"width":267,
"x":189,
"y":540,
"pageId":1,
"height":21
},
{
"width":198,
"x":477,
"y":540,
"pageId":1,
"height":20
}
],
"parsedValue":[
"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统|ALIBABA STUDIO牌/无中文品牌|Ali-10-1-H0型|BABA 4.6"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统|",
"width":439,
"x":190,
"y":521,
"pageId":1,
"value":"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统| ALIBABA STUDIO牌/无中文品牌| Ali-10-1-H0型|BABA 4.6",
"height":21
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"ALIBABA STUDIO牌/无中文品牌|",
"width":267,
"x":189,
"y":540,
"pageId":1,
"value":"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统| ALIBABA STUDIO牌/无中文品牌| Ali-10-1-H0型|BABA 4.6",
"height":21
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"Ali-10-1-H0型|BABA 4.6",
"width":198,
"x":477,
"y":540,
"pageId":1,
"value":"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统| ALIBABA STUDIO牌/无中文品牌| Ali-10-1-H0型|BABA 4.6",
"height":20
}
],
"extractedValue":[
"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统| ALIBABA STUDIO牌/无中文品牌| Ali-10-1-H0型|BABA 4.6"
],
"keyDesc":[
"规格型号"
],
"value":[
"1|0| Computer Ali-10-1-H0|处理器内存eMMC操作系统| ALIBABA STUDIO牌/无中文品牌| Ali-10-1-H0型|BABA 4.6"
],
"key":[
"GModel"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":64,
"x":848,
"y":498,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1000个"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1000个",
"width":64,
"x":848,
"y":498,
"pageId":1,
"value":"1000",
"height":19
}
],
"extractedValue":[
"1000"
],
"keyDesc":[
"法定第一数量"
],
"value":[
"1000"
],
"key":[
"FirstQty"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":64,
"x":848,
"y":498,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1000个"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1000个",
"width":64,
"x":848,
"y":498,
"pageId":1,
"value":"个",
"height":19
}
],
"extractedValue":[
"个"
],
"keyDesc":[
"法定第一计量单位"
],
"value":[
"个"
],
"key":[
"FirstUnit"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":63,
"x":850,
"y":521,
"pageId":1,
"height":20
}
],
"parsedValue":[
"4.4千克"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"4.4千克",
"width":63,
"x":850,
"y":521,
"pageId":1,
"value":"4.4",
"height":20
}
],
"extractedValue":[
"4.4"
],
"keyDesc":[
"法定第二法定数量"
],
"value":[
"4.4"
],
"key":[
"SecondQty"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":63,
"x":850,
"y":521,
"pageId":1,
"height":20
}
],
"parsedValue":[
"4.4千克"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"4.4千克",
"width":63,
"x":850,
"y":521,
"pageId":1,
"value":"千克",
"height":20
}
],
"extractedValue":[
"千克"
],
"keyDesc":[
"法定第二计量单位"
],
"value":[
"千克"
],
"key":[
"SecondUnit"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":55,
"x":851,
"y":545,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1000个"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1000个",
"width":55,
"x":851,
"y":545,
"pageId":1,
"value":"1000",
"height":19
}
],
"extractedValue":[
"1000"
],
"keyDesc":[
"成交数量"
],
"value":[
"1000"
],
"key":[
"GQty"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":55,
"x":851,
"y":545,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1000个"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1000个",
"width":55,
"x":851,
"y":545,
"pageId":1,
"value":"个",
"height":19
}
],
"extractedValue":[
"个"
],
"keyDesc":[
"成交计量单位"
],
"value":[
"个"
],
"key":[
"GUnit"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":65,
"x":984,
"y":497,
"pageId":1,
"height":18
}
],
"parsedValue":[
"202.00"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"202.00",
"width":65,
"x":984,
"y":497,
"pageId":1,
"value":"202.00",
"height":18
}
],
"extractedValue":[
"202.00"
],
"keyDesc":[
"单价"
],
"value":[
"202.00"
],
"key":[
"DeclPrice"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":106,
"x":963,
"y":520,
"pageId":1,
"height":19
}
],
"parsedValue":[
"202,000.00"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"202,000.00",
"width":106,
"x":963,
"y":520,
"pageId":1,
"value":"202000.00",
"height":19
}
],
"extractedValue":[
"202000.00"
],
"keyDesc":[
"总价"
],
"value":[
"202000.00"
],
"key":[
"DeclTotal"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":43,
"x":1000,
"y":543,
"pageId":1,
"height":20
}
],
"parsedValue":[
"美元"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"美元",
"width":43,
"x":1000,
"y":543,
"pageId":1,
"value":"美元",
"height":20
}
],
"extractedValue":[
"美元"
],
"keyDesc":[
"币制"
],
"value":[
"美元"
],
"key":[
"TradeCurr"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":34,
"x":1111,
"y":497,
"pageId":1,
"height":21
},
{
"width":44,
"x":1157,
"y":497,
"pageId":1,
"height":21
}
],
"parsedValue":[
"中国(CHN)"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"中国",
"width":34,
"x":1111,
"y":497,
"pageId":1,
"value":"中国 (CHN)",
"height":21
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"(CHN)",
"width":44,
"x":1157,
"y":497,
"pageId":1,
"value":"中国 (CHN)",
"height":21
}
],
"extractedValue":[
"中国 (CHN)"
],
"keyDesc":[
"原产国(地区)"
],
"value":[
"中国 (CHN)"
],
"key":[
"OriginCountry"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":35,
"x":1246,
"y":496,
"pageId":1,
"height":21
},
{
"width":44,
"x":1292,
"y":496,
"pageId":1,
"height":21
}
],
"parsedValue":[
"中国(CHN)"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"中国",
"width":35,
"x":1246,
"y":496,
"pageId":1,
"value":"中国 (CHN)",
"height":21
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"(CHN)",
"width":44,
"x":1292,
"y":496,
"pageId":1,
"value":"中国 (CHN)",
"height":21
}
],
"extractedValue":[
"中国 (CHN)"
],
"keyDesc":[
"最终目的国(地区)"
],
"value":[
"中国 (CHN)"
],
"key":[
"DestinationCountry"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":228,
"x":1373,
"y":497,
"pageId":1,
"height":22
}
],
"parsedValue":[
"杭州市余杭区阿里巴巴集团"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"杭州市余杭区阿里巴巴集团",
"width":228,
"x":1373,
"y":497,
"pageId":1,
"value":"杭州市余杭区阿里巴巴集团",
"height":22
}
],
"extractedValue":[
"杭州市余杭区阿里巴巴集团"
],
"keyDesc":[
"境内目的地"
],
"value":[
"杭州市余杭区阿里巴巴集团"
],
"key":[
"DistrictCode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":79,
"x":1643,
"y":498,
"pageId":1,
"height":20
}
],
"parsedValue":[
"照章征税"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"照章征税",
"width":79,
"x":1643,
"y":498,
"pageId":1,
"value":"照章征税",
"height":20
}
],
"extractedValue":[
"照章征税"
],
"keyDesc":[
"征免"
],
"value":[
"照章征税"
],
"key":[
"DutyMode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
}
]
]
],
"kvInfo":[
{
"valuePos":[
{
"width":156,
"x":54,
"y":134,
"pageId":1,
"height":19
}
],
"parsedValue":[
"阿里云计算有限公司"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"阿里云计算有限公司",
"width":156,
"x":54,
"y":134,
"pageId":1,
"value":"阿里云计算有限公司",
"height":19
}
],
"extractedValue":[
"阿里云计算有限公司"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"境内收货人名称"
],
"value":[
"阿里云计算有限公司"
],
"key":[
"TradeName"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":39,
"x":577,
"y":137,
"pageId":1,
"height":19
}
],
"parsedValue":[
"杭州"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"杭州",
"width":39,
"x":577,
"y":137,
"pageId":1,
"value":"杭州",
"height":19
}
],
"extractedValue":[
"杭州"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"进境关别"
],
"value":[
"杭州"
],
"key":[
"IEPort"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":86,
"x":817,
"y":137,
"pageId":1,
"height":19
}
],
"parsedValue":[
"20201010"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"20201010",
"width":86,
"x":817,
"y":137,
"pageId":1,
"value":"20201010",
"height":19
}
],
"extractedValue":[
"20201010"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"进口日期"
],
"value":[
"20201010"
],
"key":[
"IEDate"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":83,
"x":1104,
"y":137,
"pageId":1,
"height":19
}
],
"parsedValue":[
"20201011"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"20201011",
"width":83,
"x":1104,
"y":137,
"pageId":1,
"value":"20201011",
"height":19
}
],
"extractedValue":[
"20201011"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"申报日期"
],
"value":[
"20201011"
],
"key":[
"DDate"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":306,
"x":48,
"y":184,
"pageId":1,
"height":20
}
],
"parsedValue":[
"ALIBABA.COM U.S. LLC (CALIFORNIA)"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"ALIBABA.COM U.S. LLC (CALIFORNIA)",
"width":306,
"x":48,
"y":184,
"pageId":1,
"value":"ALIBABA.COM U.S. LLC (CALIFORNIA)",
"height":20
}
],
"extractedValue":[
"ALIBABA.COM U.S. LLC (CALIFORNIA)"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"境外发货人"
],
"value":[
"ALIBABA.COM U.S. LLC (CALIFORNIA)"
],
"key":[
"OverseasConsigneeEname"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":41,
"x":576,
"y":187,
"pageId":1,
"height":19
}
],
"parsedValue":[
"空运"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"空运",
"width":41,
"x":576,
"y":187,
"pageId":1,
"value":"空运",
"height":19
}
],
"extractedValue":[
"空运"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"运输方式"
],
"value":[
"空运"
],
"key":[
"TrafMode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":133,
"x":817,
"y":187,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1010101010101"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1010101010101",
"width":133,
"x":817,
"y":187,
"pageId":1,
"value":"1010101010101",
"height":19
}
],
"extractedValue":[
"1010101010101"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"运输工具名称"
],
"value":[
"1010101010101"
],
"key":[
"TrafName"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":133,
"x":817,
"y":187,
"pageId":1,
"height":19
}
],
"parsedValue":[
"1010101010101"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"1010101010101",
"width":133,
"x":817,
"y":187,
"pageId":1,
"value":"1010101010101",
"height":19
}
],
"extractedValue":[
"1010101010101"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"航次号"
],
"value":[
"1010101010101"
],
"key":[
"VoyNo"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":55,
"x":1104,
"y":187,
"pageId":1,
"height":19
}
],
"parsedValue":[
"CD122"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"CD122",
"width":55,
"x":1104,
"y":187,
"pageId":1,
"value":"CD122",
"height":19
}
],
"extractedValue":[
"CD122"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"提运单号"
],
"value":[
"CD122"
],
"key":[
"BLNo"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":113,
"x":1375,
"y":187,
"pageId":1,
"height":20
}
],
"parsedValue":[
"企业自有仓库"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"企业自有仓库",
"width":113,
"x":1375,
"y":187,
"pageId":1,
"value":"企业自有仓库",
"height":20
}
],
"extractedValue":[
"企业自有仓库"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"存放地点"
],
"value":[
"企业自有仓库"
],
"key":[
"GoodsPlace"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":78,
"x":577,
"y":237,
"pageId":1,
"height":20
}
],
"parsedValue":[
"一般贸易"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"一般贸易",
"width":78,
"x":577,
"y":237,
"pageId":1,
"value":"一般贸易",
"height":20
}
],
"extractedValue":[
"一般贸易"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"监管方式"
],
"value":[
"一般贸易"
],
"key":[
"TradeMode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":75,
"x":820,
"y":237,
"pageId":1,
"height":20
}
],
"parsedValue":[
"一般征税"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"一般征税",
"width":75,
"x":820,
"y":237,
"pageId":1,
"value":"一般征税",
"height":20
}
],
"extractedValue":[
"一般征税"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"征免性质"
],
"value":[
"一般征税"
],
"key":[
"CutMode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":62,
"x":1437,
"y":212,
"pageId":1,
"height":21
}
],
"parsedValue":[
"(HKG003)"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"(HKG003)",
"width":62,
"x":1437,
"y":212,
"pageId":1,
"value":"(HKG003)",
"height":21
}
],
"extractedValue":[
"(HKG003)"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"启运港"
],
"value":[
"(HKG003)"
],
"key":[
"DespPort"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":116,
"x":47,
"y":288,
"pageId":1,
"height":19
}
],
"parsedValue":[
"HZ1010-0000"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"HZ1010-0000",
"width":116,
"x":47,
"y":288,
"pageId":1,
"value":"HZ1010-0000",
"height":19
}
],
"extractedValue":[
"HZ1010-0000"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"合同协议号"
],
"value":[
"HZ1010-0000"
],
"key":[
"ContrNo"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":38,
"x":583,
"y":286,
"pageId":1,
"height":19
}
],
"parsedValue":[
"美国"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"美国",
"width":38,
"x":583,
"y":286,
"pageId":1,
"value":"美国",
"height":19
}
],
"extractedValue":[
"美国"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"贸易国(地区)"
],
"value":[
"美国"
],
"key":[
"TradeAreaCode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":39,
"x":826,
"y":285,
"pageId":1,
"height":19
}
],
"parsedValue":[
"美国"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"美国",
"width":39,
"x":826,
"y":285,
"pageId":1,
"value":"美国",
"height":19
}
],
"extractedValue":[
"美国"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"启运国(地区)"
],
"value":[
"美国"
],
"key":[
"TradeCountry"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":70,
"x":1118,
"y":284,
"pageId":1,
"height":19
}
],
"parsedValue":[
"中国境内"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"中国境内",
"width":70,
"x":1118,
"y":284,
"pageId":1,
"value":"中国境内",
"height":19
}
],
"extractedValue":[
"中国境内"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"经停港"
],
"value":[
"中国境内"
],
"key":[
"DistinatePort"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":40,
"x":1374,
"y":288,
"pageId":1,
"height":20
}
],
"parsedValue":[
"杭州"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"杭州",
"width":40,
"x":1374,
"y":288,
"pageId":1,
"value":"杭州",
"height":20
}
],
"extractedValue":[
"杭州"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"入境口岸"
],
"value":[
"杭州"
],
"key":[
"EntyPortCode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":137,
"x":49,
"y":313,
"pageId":1,
"height":20
},
{
"width":265,
"x":49,
"y":338,
"pageId":1,
"height":21
}
],
"parsedValue":[
"包装种类(22/92)纸制或纤维板制盒/箱/再生木托"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"包装种类(22/92)",
"width":137,
"x":49,
"y":313,
"pageId":1,
"value":"(22/92) 纸制或纤维板制盒/箱/再生木托",
"height":20
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"纸制或纤维板制盒/箱/再生木托",
"width":265,
"x":49,
"y":338,
"pageId":1,
"value":"(22/92) 纸制或纤维板制盒/箱/再生木托",
"height":21
}
],
"extractedValue":[
"(22/92) 纸制或纤维板制盒/箱/再生木托"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"包装种类"
],
"value":[
"(22/92) 纸制或纤维板制盒/箱/再生木托"
],
"key":[
"WrapType"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":25,
"x":575,
"y":339,
"pageId":1,
"height":18
}
],
"parsedValue":[
"24"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"24",
"width":25,
"x":575,
"y":339,
"pageId":1,
"value":"24",
"height":18
}
],
"extractedValue":[
"24"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"件数"
],
"value":[
"24"
],
"key":[
"PackNo"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":40,
"x":687,
"y":337,
"pageId":1,
"height":18
}
],
"parsedValue":[
"4500"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"4500",
"width":40,
"x":687,
"y":337,
"pageId":1,
"value":"4500",
"height":18
}
],
"extractedValue":[
"4500"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"毛重"
],
"value":[
"4500"
],
"key":[
"GrossWet"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":40,
"x":830,
"y":336,
"pageId":1,
"height":18
}
],
"parsedValue":[
"4400"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"4400",
"width":40,
"x":830,
"y":336,
"pageId":1,
"value":"4400",
"height":18
}
],
"extractedValue":[
"4400"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"净重"
],
"value":[
"4400"
],
"key":[
"NetWt"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":34,
"x":977,
"y":339,
"pageId":1,
"height":18
}
],
"parsedValue":[
"CIF"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"CIF",
"width":34,
"x":977,
"y":339,
"pageId":1,
"value":"CIF",
"height":18
}
],
"extractedValue":[
"CIF"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"成交方式"
],
"value":[
"CIF"
],
"key":[
"TransMode"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":96,
"x":1502,
"y":339,
"pageId":1,
"height":19
}
],
"parsedValue":[
"CNY/600/5"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"CNY/600/5",
"width":96,
"x":1502,
"y":339,
"pageId":1,
"value":"5",
"height":19
}
],
"extractedValue":[
"5"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"杂费币制"
],
"value":[
"5"
],
"key":[
"OtherCurr"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":96,
"x":1502,
"y":339,
"pageId":1,
"height":19
}
],
"parsedValue":[
"CNY/600/5"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"CNY/600/5",
"width":96,
"x":1502,
"y":339,
"pageId":1,
"value":"600",
"height":19
}
],
"extractedValue":[
"600"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"杂费/率"
],
"value":[
"600"
],
"key":[
"OtherRate"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":596,
"x":48,
"y":390,
"pageId":1,
"height":21
}
],
"parsedValue":[
"随附单证2:代理报关委托协议(电子);装箱单;合同;企业提供的其他;发票"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"随附单证2:代理报关委托协议(电子);装箱单;合同;企业提供的其他;发票",
"width":596,
"x":48,
"y":390,
"pageId":1,
"value":"随附单证2:代理报关委托协议(电子);装箱单;合同;企业提供的其他;发票",
"height":21
}
],
"extractedValue":[
"随附单证2:代理报关委托协议(电子);装箱单;合同;企业提供的其他;发票"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"随附单证及编号"
],
"value":[
"随附单证2:代理报关委托协议(电子);装箱单;合同;企业提供的其他;发票"
],
"key":[
"Edoc"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
},
{
"valuePos":[
{
"width":122,
"x":1294,
"y":949,
"pageId":1,
"height":20
},
{
"width":116,
"x":1081,
"y":999,
"pageId":1,
"height":20
}
],
"parsedValue":[
"海关批注及签章申报单位(签章)"
],
"valueSourceList":[
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"海关批注及签章",
"width":122,
"x":1294,
"y":949,
"pageId":1,
"value":"海关批注及签章 签章",
"height":20
},
{
"documentType":"ImportDeclarationSheet",
"parsedValue":"申报单位(签章)",
"width":116,
"x":1081,
"y":999,
"pageId":1,
"value":"海关批注及签章 签章",
"height":20
}
],
"extractedValue":[
"海关批注及签章 签章"
],
"keySourceList":[
],
"keyPos":[
],
"keyDesc":[
"申报单位名称"
],
"value":[
"海关批注及签章 签章"
],
"key":[
"AgentName"
],
"extInfo":{
"recognizeFrom":"OCR",
"extractFrom":"NLP"
}
}
],
"pageInfo":[
{
"documentFileName":"b31c369d.jpg",
"documentType":"ImportDeclarationSheet",
"filePageId":1,
"imageUrl":"http://docmind-api-cn-hangzhou.oss-cn-hangzhou.aliyuncs.com/publicIndustryExtract/docmind-20230505-ImportDeclarationSheet-82****/0.jpg?Expires=1683258433&OSSAccessKeyId=LTAI5tQL9bqLHC5HY****&Signature=XdvpiCYKpR14CyBV4gQN8L%2FAweo%3D",
"width":1754,
"angle":0,
"originalFileUrl":"https://docmind-api-cn-hangzhou.oss-cn-hangzhou.aliyuncs.com/publicIndustryExtract/testDa**/%E4%BA%8C%E6%9C%9F%E6%A0%B7%E4%BE%8B%E5%8D%95%E6%8D%AE/%E8%BF%9B%E5%8F%A3%E6%8A%A5%E5%85%B3%E5%8D%95.jpg?Expires=1683341030&OSSAccessKeyId=LTAI5tQL9bqLHC5HY****&Signature=xIhEWplIkm53OQ%2BBuJvB3vh3XjM%3D",
"source":"OCR",
"pageId":1,
"pdfParseResult":"http://docmind-api-cn-hangzhou.oss-cn-hangzhou.aliyuncs.com/publicIndustryExtract/docmind-20230505-ImportDeclarationSheet-82****/EasyPDF/0.txt?Expires=1683258433&OSSAccessKeyId=LTAI5tQL9bqLHC5HY****&Signature=dfuGbQO7JFVBmTQNdcmkv3SeGgA%3D",
"fileType":"jpg",
"height":1239
}
]
},
"errorMessage":null,
"errorCode":null,
"status":"success"
}
}
处理成功时:Completed会返回true,表示任务处理结束;Status会返回“Success”,表示处理成功。