你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Chat Thread - Update Chat Thread Properties
更新线程的属性。
PATCH {endpoint}/chat/threads/{chatThreadId}?api-version=2024-03-07
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
chat
|
path | True |
string |
要更新的线程的 ID。 |
endpoint
|
path | True |
string |
Azure 通信资源的终结点。 |
api-version
|
query | True |
string |
要调用的 API 版本。 |
请求头
Media Types: "application/merge-patch+json"
名称 | 必需 | 类型 | 说明 |
---|---|---|---|
Authorization | True |
string |
ACS(Azure 通信服务)用户访问令牌。 |
请求正文
Media Types: "application/merge-patch+json"
名称 | 类型 | 说明 |
---|---|---|
topic |
string |
聊天线程主题。 |
响应
名称 | 类型 | 说明 |
---|---|---|
204 No Content |
已成功更新线程。 |
|
401 Unauthorized |
Communication |
未经 授权。 |
403 Forbidden |
Communication |
禁止。 |
429 Too Many Requests |
Communication |
请求过多。 |
Other Status Codes |
Communication |
服务不可用。 |
安全性
Authorization
ACS(Azure 通信服务)用户访问令牌。
类型:
apiKey
在:
header
示例
Update chat thread topic
示例请求
PATCH https://contoso.westus.communications.azure.com/chat/threads/19:uni01_zbnh3nt2dfuffezc3sox7dog7wfhk6y5qe2rwlnfhlhdzirihdpq@thread.v2?api-version=2024-03-07
{
"topic": "Updated Thread Topic"
}
示例响应
{
"error": {
"code": "Unauthorized",
"message": "Request is not authorized."
}
}
{
"error": {
"code": "Forbidden",
"message": "User is not allowed to perform specified action."
}
}
{
"error": {
"code": "TooManyRequests",
"message": "Rate limit exceeded."
}
}
{
"error": {
"code": "ServiceUnavailable",
"message": "The server is currently unable to handle the request."
}
}
定义
UpdateChatThreadRequest
请求用于更新聊天线程的有效负载。
名称 | 类型 | 说明 |
---|---|---|
topic |
string |
聊天线程主题。 |