显示用户的个人资料
GET
/api/v1/user检索当前用户的个人资料信息。此端点允许您获取与用户配置文件关联的详细信息和属性,从而提供有关用户帐户和首选项的有价值的信息。
请求参数
无
示例代码
返回响应
成功(200)
没有权限(401)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
data
object
必需
created_at
string
必需
email
string
必需
id
integer
必需
current_team_id
integer
必需
name
string
必需
profile_photo_url
string
必需
updated_at
string
必需
示例
成功示例
{
"status": "success",
"data": {
"created_at": "2023-04-30 16:43:53",
"email": "user@domain.com",
"id": 1,
"current_team_id": 1,
"name": "John Doe",
"profile_photo_url": "https://app.customgpt.ai/user/1/profile_photo_url",
"updated_at": "2023-04-30 16:43:53"
}
}
最后修改时间: 10 个月前