...
Description: 通过兔展企业id获取第三方企业信息,如通过orgId获取uid和orgName等信息
Query-parameters:
Parameter | Type | Required | Description | |
---|---|---|---|---|
opfid | string | true | 开放平台ID | |
nonce | string | true | 6位随机字串不能为空 | |
timestamp | string | true | 签名时间戳 | |
signature | string | true | 签名 | |
orgId | string | true | 第三方企业id |
Response-fields:
Field | Type | Description | Since |
---|---|---|---|
code | string | 状态码 | - |
errorCode | string | 错误状态码 | - |
msg | string | 状态描述 | - |
data | array | 数据 | - |
└─uid | string | 第三方企业id | - |
└─companyId | string | 第三方公司id | - |
└─orgId | string | 兔展企业id | - |
└─orgName | string | 兔展企业名称 |
Response-example:
代码块 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
{ "code": "71236", "errorCode": "71236", "msg": "9zffb4", "data": [ { "uid": "fabf9e21-0957-46b2-a7a6-5c902b050b0b", "companyId": "20", "orgId": "20", "orgName": "哲瀚.韩" } ] } |
...