用户所属团队列表
POST
/aia-studio/team/queryTeamListByUser
请求参数
Body 参数application/json
jfId
string
用户解放号ID
示例
{
"jfId": "101"
}
示例代码
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://rest.jointpilot.com/aia-studio/team/queryTeamListByUser' \
--header 'Content-Type: application/json' \
--data-raw '{
"jfId": "101"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
msg
string | null
必需
data
array [object {5}] | null
必需
uuid
string
团队uid
teamName
string
团队名称
creator
string
创建人
creatorTime
string
创建时间
isManage
integer
是否是管理:0是管理,1:普通
示例
{
"code": "0",
"msg": null,
"data": [
{
"uuid": "235018102",
"teamName": "果然亮",
"creator": "123",
"creatorTime": "2024-01-01",
"isManage": 0
}
]
}
修改于 2024-06-18 02:57:47