##查询签名列表
~~~[api]
post:https://open.wellsign.cn/sdk/sign/v1/sign/list
int:currentPage=1#当前页,默认1
int:pageSize=10#每页的条数,默认10
*token=xxx#验证令牌,可在应用模块,token获取接口得到
*caller_id=001#自定义调用这唯一标识,可用来保存签字笔迹模版等
<<<
success
{
"succeed": 0,
"msg": null,
"data": {
"total": 3,
"data": [{
"id": 48,
"svgContent": "<svg height=\"824px\" ....."
},
{
"id": 47,
"svgContent": "<svg height=\"824px\" ....."
}
],
"pageSize": 10,
"currentPage": 1
}
}
<<<
error
{
"succeed": 200,
"msg": {
"en": "Parameter error",
"cn": "参数错误"
},
"data": null
}
~~~