- 平台简介
- 新手指南
- API协议
- API文档
- 合同管理
- 签署服务
- 组织架构
- 印章管理
- 模板管理
- 业务分类
- 个人认证
- 企业认证
- 外部客户
- 授权管理
- 辅助工具
- 信息校验
- 单点登录集成
- JS SDK文档
- 公告
- 小程序插件
- 常见问题
企业认证-获取企业认证链接PC
POST
/companyauth/pcpage
请求参数
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
companyName
string
待认证公司名称
applicant
object (UserRequest)
认证提交人
contact
string
联系方式
contactType
enum<string>
联系类型
枚举值:
MOBILEEMAILEMPLOYEEIDNUMBERBIZID
name
string
姓名
registerNo
string
待认证公司注册号
legalPerson
string
待认证公司法人姓名
callbackUrl
string
认证回调地址
closeButton
boolean
是否显示关闭按钮
modifyFields
string
可修改项参数
lang
enum<string>
指定页面语言
枚举值:
cneg
pageStyle
object
页面风格
themeColor
string
自定义页面主题色
示例
{
"companyName":"西街村食品有限公司",
"applicant":{
"name":"邓茜茜",
"contact":"19000009093",
"contactType":"MOBILE"
},
"callbackUrl":"http://www.qiyuesuo.com"
}
示例代码
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/companyauth/pcpage' \
--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 '{
"companyName":"西街村食品有限公司",
"applicant":{
"name":"邓茜茜",
"contact":"19000009093",
"contactType":"MOBILE"
},
"callbackUrl":"http://www.qiyuesuo.com"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
result
object (CorpAuthResponse)
必需
authUrl
string
认证链接
requestId
string
认证请求ID
示例
{
"result": {
"authUrl": "https://auth.qiyuesuo.me/enterprise-pc/home?ticket=yr%2Bvoy9%2F7a6qyZPXY%2BV%2FwCSV7DhEc5SCdzUx8V0HXyKeHDk%2F9MaG4JLHJLqXl1Wb&closeButton=true",
"requestId": "bce56e83-1cf2-4aa4-99c7-b7528b7ded6d"
},
"code": 0,
"message": "SUCCESS"
}
修改于 2023-01-19 03:00:26