添加白标用户
POST
/api/v0/w/brands/{brandId}/users向您的白标品牌添加新用户。
先决条件:
- 您必须是 SiteGPT 中的白标客户。
- 您需要在 SiteGPT 仪表板中创建和配置您自己的品牌。
请求参数
Path 参数
brandId
string
必需
用户所属白标品牌id
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
email
string
必需
您想要添加到白标品牌的用户的电子邮件
chatbotsQuota
integer
必需
分配给用户的聊天机器人配额
linksQuota
integer
必需
分配给用户的链接配额
filesQuota
integer
必需
分配给用户的文件配额
combinedMessagesQuota
integer
必需
分配给用户的合并消息配额
membersQuota
integer
必需
分配给用户的成员配额
示例
{
"email": "user@example.com",
"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": "Added new whitelabel user of your brand successfully",
"data": {
"whitelabelUser": {
"id": "332153612345906321",
"brandId": "332110515123458123",
"email": "user@example.com",
"name": "",
"profilePic": "",
"chatbotsQuota": 1,
"linksQuota": 10,
"filesQuota": 5,
"combinedMessagesQuota": 10,
"membersQuota": 1,
"createdAt": "2024-02-10T14:30:21.828601Z",
"updatedAt": "2024-02-10T14:30:21.828601Z"
}
}
}
最后修改时间: 8 个月前