查询出证列表
更新时间:2023-05-05
查询出证列表
接口描述
本接口用于查询可以出具司法存证证书的列表
请求结构
POST /v2/saas/openapi/evidence/yuntestifylist HTTP/1.1
Host: xuper.baidu.com
Authorization: authorization string
{
"address": address,
}
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
address | string | 是 | RequestBody参数 | 要查询的出证地址address |
page | int | 否 | RequestBody参数 | 页码[1]开始 默认1 |
perPage | int | 否 | RequestBody参数 | 每页条数 默认20 |
start_time | int | 否 | RequestBody参数 | 开始时间 |
end_time | int | 否 | RequestBody参数 | 结束时间 |
keyword | string | 否 | RequestBody参数 | 文件名或者存证保全ID |
响应头域
除公共头域外,无其它特殊头域。
响应参数
参数名称 | 类型 | 描述 |
---|---|---|
code | int | 错误码 详情查看通用说明-通用错误码 |
msg | string | 信息描述 |
data | array | 返回值列表 |
+ total | int | 总条数 |
+ list | string | 存证信息 |
++ id | int | 存证id |
++ txid | string | 存证txid |
++ address | string | 存证address |
++ evidence_filename | string | 存证文件名称 |
++ evidence_filehash | string | 存证文件hash |
++ court_name | string | 存证法院短名称 |
++ court_fullname | string | 存证法院全名 |
++ status | string | 存证状态 0初始化,1 打包完毕,2出证失败 |
++ zip_url | string | 压缩包地址 |
++ pdf_url | string | pdf地址 |
++ create_time | string | 创建时间 |
++ update_time | string | 修改时间 |
请求示例
POST /v2/saas/openapi/evidence/yuntestifylist
Host: xuper.baidu.com
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2015-08-11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
{
"address":"angoMrEcmCNag87PzbS94je8rU9qxWd9y"
}
响应示例
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Date: Wed, 08 Jul 2015 03:28:11 GMT
x-bce-request-id: d8752367-38e8-45e4-b4c7-e53be3137ce5
{
"code":0,
"msg":"Success",
"data":{
"total":2,
"list":[{
"id":"54",
"txid":"5c93f51e6dbca240778f464323f75933d0b5869b484f975f9718194c7909c113",
"address":"d9DhUJ63z698B8Mtopo5EV7T7bUSz1gEd",
"evidence_filename":"\u81ea\u5b9a\u4e49\u5185\u5bb9",
"evidence_filehash":"7c39e2c0a5cf704f541a2e3f97d0c12dd5650534366670249bd061ee5a17b19e",
"court_name":"bh",
"court_fullname":"\u5317\u4eac\u4e92\u8054\u7f51\u6cd5\u9662",
"status":"2",
"zip_url":"",
"pdf_url":"",
"create_time":"1681444954",
"update_time":"1681530860"
},
{
"id":"53",
"txid":"cd591ed30bc30aed6d2952667058e27423a8ceae47888a5f95bb955f55e7cd98",
"address":"d9DhUJ63z698B8Mtopo5EV7T7bUSz1gEd",
"evidence_filename":"aaa.jpg",
"evidence_filehash":"a9b719354841e8f940f4c2787e74bd1783205e3687694d17aef4812717aa7859",
"court_name":"bh","court_fullname":"\u5317\u4eac\u4e92\u8054\u7f51\u6cd5\u9662",
"status":"2",
"zip_url":"",
"pdf_url":"",
"create_time":"1681374093",
"update_time":"1681374097"
}]
}
}