查询公海销售对应客户的联系人信息
POST
/api/v3/get-corp-highseas-contacts
请求参数
Header 参数
appId
string
应用 appId
默认值:
{{appId}}
timestamp
string
请求时间戳
默认值:
{{timestamp}}
sign
string
请求消息签名值
默认值:
{{sign}}
appKey
string
应用 appKey
默认值:
{{appKey}}
Body 参数application/json
customerId
integer
探马系统客户ID
示例
{
"userId": 393493779062848,
"customerId": 419663324330048,
"qwUserId": "zhangqiang123"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v3/get-corp-highseas-contacts' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": 393493779062848,
"customerId": 419663324330048,
"qwUserId": "zhangqiang123"
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
message
string
返回描述
data
array [object {5}]
返回值
customerId
integer
探马系统客户ID
wechatNickname
string | null
微信昵称
contactId
integer
联系人ID
customerName
string
联系人名字
phoneNumbers
array[string]
联系人手机号列表
示例
{
"code": 0,
"message": "success",
"data": [
{
"customerId": 410524156766272,
"wechatNickname": "兰媛媛",
"contactId": 410510641262656,
"customerName": "兰媛媛",
"phoneNumbers": [
"15981931274"
]
},
{
"customerId": 410524156766272,
"wechatNickname": null,
"contactId": 411047097458752,
"customerName": "徐重要",
"phoneNumbers": [
"18071202383"
]
},
{
"customerId": 410524156766272,
"wechatNickname": null,
"contactId": 411045461317696,
"customerName": "联系人696",
"phoneNumbers": [
"18171274244"
]
}
]
}
🟢200错误
修改于 2023-03-07 11:58:40