Chat Thread - Update Chat Thread Properties
Hiermee worden de eigenschappen van een thread bijgewerkt.
PATCH {endpoint}/chat/threads/{chatThreadId}?api-version=2024-03-07
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
chat
|
path | True |
string |
De id van de thread die moet worden bijgewerkt. |
endpoint
|
path | True |
string |
Het eindpunt van de Azure Communication-resource. |
api-version
|
query | True |
string |
De versie van de API die moet worden aangeroepen. |
Aanvraagkoptekst
Media Types: "application/merge-patch+json"
Name | Vereist | Type | Description |
---|---|---|---|
Authorization | True |
string |
Een ACS-gebruikerstoegangstoken (Azure Communication Services). |
Aanvraagbody
Media Types: "application/merge-patch+json"
Name | Type | Description |
---|---|---|
topic |
string |
Chatthread-onderwerp. |
Antwoorden
Name | Type | Description |
---|---|---|
204 No Content |
De thread is bijgewerkt. |
|
401 Unauthorized |
Communication |
Ongeoorloofd. |
403 Forbidden |
Communication |
Verboden. |
429 Too Many Requests |
Communication |
Te veel aanvragen. |
Other Status Codes |
Communication |
De service is niet beschikbaar. |
Beveiliging
Authorization
Een ACS-gebruikerstoegangstoken (Azure Communication Services).
Type:
apiKey
In:
header
Voorbeelden
Update chat thread topic
Voorbeeldaanvraag
PATCH https://contoso.westus.communications.azure.com/chat/threads/19:uni01_zbnh3nt2dfuffezc3sox7dog7wfhk6y5qe2rwlnfhlhdzirihdpq@thread.v2?api-version=2024-03-07
{
"topic": "Updated Thread Topic"
}
Voorbeeldrespons
{
"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."
}
}
Definities
UpdateChatThreadRequest
Nettolading aanvragen voor het bijwerken van een chat-thread.
Name | Type | Description |
---|---|---|
topic |
string |
Chatthread-onderwerp. |