更新白标用户
PATCH
/api/v0/w/brands/{brandId}/users/{userId}更新您的白标品牌的用户。
先决条件:
- 您必须是 SiteGPT 中的白标客户。
- 您需要在 SiteGPT 仪表板中创建和配置您自己的品牌。
请求参数
Path 参数
brandId
string
必需
需要更新配额的白标用户id
userId
string
必需
白标品牌的 ID
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
chatbotsQuota
integer
可选
分配给用户的聊天机器人配额
linksQuota
integer
可选
分配给用户的链接配额
filesQuota
integer
可选
分配给用户的文件配额
combinedMessagesQuota
integer
可选
分配给用户的合并消息配额
membersQuota
integer
可选
分配给用户的成员配额
示例
{
"chatbotsQuota": 1,
"linksQuota": 100,
"filesQuota": 25,
"combinedMessagesQuota": 250,
"membersQuota": 2
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
禁止访问(403)
记录不存在(404)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
message
string
必需
data
object
必需
whitelabelUser
object
必需
示例
成功示例
{
"success": true,
"message": "Updated the whitelabel user of the brand successfully",
"data": {
"whitelabelUser": {
"id": "332153612345906321",
"brandId": "332110515123458123",
"email": "user@example.com",
"name": "",
"profilePic": "",
"chatbotsQuota": 2,
"linksQuota": 20,
"filesQuota": 5,
"combinedMessagesQuota": 25,
"membersQuota": 2,
"createdAt": "2024-02-05T13:35:44.155845Z",
"updatedAt": "2024-02-05T13:35:44.155845Z"
}
}
}
最后修改时间: 8 个月前