- 平台简介
- 新手指南
- API协议
- API文档
- 合同管理
- 签署服务
- 组织架构
- 印章管理
- 模板管理
- 业务分类
- 个人认证
- 企业认证
- 外部客户
- 授权管理
- 辅助工具
- 信息校验
- 单点登录集成
- JS SDK文档
- 公告
- 小程序插件
- 常见问题
授权管理-查询个人静默签授权记录
POST
/v2/personalsign/query
请求参数
Header 参数
x-qys-open-accesstoken
string
可选
默认值:
{{x-qys-open-accesstoken}}
x-qys-open-timestamp
string
可选
默认值:
{{x-qys-open-timestamp}}
x-qys-open-nonce
string
可选
默认值:
{{x-qys-open-nonce}}
x-qys-open-signature
string
可选
默认值:
{{x-qys-open-signature}}
Body 参数application/json
user
object
必需
contact
string
联系方式
contactType
enum<string>
联系类型
枚举值:
MOBILEEMAILEMPLOYEEIDNUMBERBIZID
authStatus
enum<string>
可选
枚举值:
authorizedexpireddeauthorized
示例
{
"user":{
"contact":"15021504325",
"contactType":"MOBILE"
},
"company":"上海契约锁电子合同签名有限公司"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.qiyuesuo.com/v2/personalsign/query' \
--header 'x-qys-open-accesstoken: {{x-qys-open-accesstoken}}' \
--header 'x-qys-open-timestamp: {{x-qys-open-timestamp}}' \
--header 'x-qys-open-nonce: {{x-qys-open-nonce}}' \
--header 'x-qys-open-signature: {{x-qys-open-signature}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"user":{
"contact":"15021504325",
"contactType":"MOBILE"
},
"company":"上海契约锁电子合同签名有限公司"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
result
array[object (PersonalAuthAutoSignResponse) {15}]
必需
agentId
string
服务商id
tokenId
string
业务系统id
appName
string
业务系统名称
companyId
string
企业Id
companyName
string
企业名称
userId
string
授权用户id
remark
string
授权理由
authMethod
string
授权方式
authStatus
enum<string>
授权状态
枚举值:
authorizedexpired deauthorized
authDeadline
string
授权截止时间
createTime
string
创建时间
updateTime
string
更新时间
callbackUrl
string
回调地址
isDelete
boolean
是否删除
authInfo
string
指定认证信息
示例
{
"result": [
{
"id": "3025382284275617834",
"agentId": "10000",
"tokenId": "2667951614759215723",
"appName": "邓茜茜测试应用(勿动)",
"companyId": "2375616490882524008",
"companyName": "思晨教育",
"userId": "2271136400600465408",
"remark": "auth 54",
"authStatus": "unauthorized",
"authDeadline": "2023-06-15 23:59:59",
"createTime": "2022-11-02 19:09:05",
"updateTime": "2022-11-02 19:09:05",
"callbackUrl": "http://cloud.qiyuesuo.me",
"allowPersonalAuto": true,
"delete": false
},
{
"id": "3025382395852492844",
"agentId": "10000",
"tokenId": "2667951614759215723",
"appName": "邓茜茜测试应用(勿动)",
"companyId": "2375616490882524008",
"companyName": "思晨教育",
"userId": "2271136400600465408",
"remark": "auth 54",
"authMethod": "FACE",
"authStatus": "deauthorized",
"authDeadline": "2023-06-15 23:59:59",
"createTime": "2022-11-02 19:09:32",
"updateTime": "2023-01-06 17:05:49",
"callbackUrl": "http://cloud.qiyuesuo.me",
"allowPersonalAuto": true,
"delete": false
}
],
"code": 0,
"message": "SUCCESS"
}