核验区块链存证文件

更新时间:2023-08-29 18:04:30

接口描述

核验当前已签署合同PDF文件信息与蚂蚁区块链上已存证信息是否一致。

接口地址:https://{host}/v3/antchain-file-info/verify

请求方法:POST

请求头格式

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

请求参数

参数名称

参数类型

必选

参数位置

参数说明

fileHash

string

body

文件SHA256哈希值

antTxHash

string

body

区块链统一证据编号

  • 每份签署文件对应一个唯一的证据编号;

响应参数

展开全部参数参数名称

参数类型

必选

参数说明

code

int32

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

message

string

业务信息

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

data

object

业务数据

fileHash

string

文件SHA256哈希值

antTxHash

string

蚂蚁区块链统一证据编号

verifyResult

boolean

查验结果

true - 核验成功

false - 核验失败

errorCode

int64

核验错误码

0 - errorMessage为null(核验成功

2302 - Check failed, inconsistent content(核验数据比对不一致)

2303 - Permission error(无核验权限)

2304 - Invalid Base64 Data(非法的Base64数据)

3001 - Notary Type Error(不存在的存证类型)

3008 - Notary Not Found(未找到指定存证)

errorMessage

string

对应错误信息

0 - errorMessage为null(核验成功

2302 - Check failed, inconsistent content(核验数据比对不一致)

2303 - Permission error(无核验权限)

2304 - Invalid Base64 Data(非法的Base64数据)

3001 - Notary Type Error(不存在的存证类型)

3008 - Notary Not Found(未找到指定存证)

notaryTime

int64

蚂蚁区块链存证时间(Unix时间戳格式,单位:毫秒)

notaryType

string

存证类型

固定值:FileNotary(文件存证)

notaryPhase

string

存证阶段,默认为空

blockHeight

int64

区块高度(当前存储区块在区块链的位置)

antTransactionId

string

当前流程的签署文件上链事务的唯一标识

请求示例

{
    "fileHash":"bcdc3c***0477",
    "antTxHash":"11111111222222226c***fd1ed2f4"
}

响应示例

{
    "success": true,
    "message": "执行成功",
    "code": 0,
    "data": {
        "fileHash": "bcdc3c***0477",
        "blockHeight": 36047469,
        "errorCode": 0,
        "errorMessage": null,
        "notaryTime": 1625068800000,
        "notaryType": "FileNotary",
        "notaryPhase": null,
        "verifyResult": true,
        "antTransactionId": "dfd7d1dcad6fc9ae5551b6af54ceff4d",
        "antTxHash": "11111111222222226c***fd1ed2f4"
    }
}

错误码

点击查看错误码

我要纠错