Chat Thread - Update Chat Thread Properties
Uppdaterar en tråds egenskaper.
PATCH {endpoint}/chat/threads/{chatThreadId}?api-version=2024-03-07
URI-parametrar
Name | I | Obligatorisk | Typ | Description |
---|---|---|---|---|
chat
|
path | True |
string |
ID:t för den tråd som ska uppdateras. |
endpoint
|
path | True |
string |
Slutpunkten för Azure Communication-resursen. |
api-version
|
query | True |
string |
Version av API som ska anropas. |
Begärandehuvud
Media Types: "application/merge-patch+json"
Name | Obligatorisk | Typ | Description |
---|---|---|---|
Authorization | True |
string |
En ACS-användaråtkomsttoken (Azure Communication Services). |
Begärandetext
Media Types: "application/merge-patch+json"
Name | Typ | Description |
---|---|---|
topic |
string |
Chatttrådsämne. |
Svar
Name | Typ | Description |
---|---|---|
204 No Content |
Tråden har uppdaterats. |
|
401 Unauthorized |
Communication |
Obehörig. |
403 Forbidden |
Communication |
Förbjuden. |
429 Too Many Requests |
Communication |
För många begäranden. |
Other Status Codes |
Communication |
Tjänsten är inte tillgänglig. |
Säkerhet
Authorization
En ACS-användaråtkomsttoken (Azure Communication Services).
Typ:
apiKey
I:
header
Exempel
Update chat thread topic
Exempelbegäran
PATCH https://contoso.westus.communications.azure.com/chat/threads/19:uni01_zbnh3nt2dfuffezc3sox7dog7wfhk6y5qe2rwlnfhlhdzirihdpq@thread.v2?api-version=2024-03-07
{
"topic": "Updated Thread Topic"
}
Exempelsvar
{
"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."
}
}
Definitioner
UpdateChatThreadRequest
Begär nyttolast för uppdatering av en chatttråd.
Name | Typ | Description |
---|---|---|
topic |
string |
Chatttrådsämne. |