# 说明

获取用户关联的第三方系统的user_id和类型

# url

https://api.tapd.cn/users/get_third_user_mapping

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求参数

字段名 必选 类型及范围 说明
workspace_id integer 公司ID
user_id integer 用户ID

# 调用示例及返回结果

# 获取用户个人配置

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' 'https://api.tapd.cn/users/get_third_user_mapping?workspace_id=48464494&user_id=1223'

# 返回结果

{
    "status": 1,
    "data": {
        "third_partys": {
            [
                "third_party_id":"123",
                "third_party_type":"qywx"
            ]
        },
       
    },
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

# 返回字段说明

字段 说明
third_party_id 第三方系统人员ID
third_party_type 系统类别
上次更新: 2025-10-23 18:37:03