Chat Thread - Update Chat Thread Properties
스레드의 속성을 업데이트합니다.
PATCH {endpoint}/chat/threads/{chatThreadId}?api-version=2024-03-07
URI 매개 변수
Name | In(다음 안에) | 필수 | 형식 | Description |
---|---|---|---|---|
chat
|
path | True |
string |
업데이트할 스레드의 ID입니다. |
endpoint
|
path | True |
string |
Azure Communication 리소스의 엔드포인트입니다. |
api-version
|
query | True |
string |
호출할 API의 버전입니다. |
요청 헤더
Media Types: "application/merge-patch+json"
Name | 필수 | 형식 | Description |
---|---|---|---|
Authorization | True |
string |
ACS(Azure Communication Services) 사용자 액세스 토큰입니다. |
요청 본문
Media Types: "application/merge-patch+json"
Name | 형식 | Description |
---|---|---|
topic |
string |
채팅 스레드 토픽입니다. |
응답
Name | 형식 | Description |
---|---|---|
204 No Content |
스레드가 성공적으로 업데이트되었습니다. |
|
401 Unauthorized |
Communication |
무단. |
403 Forbidden |
Communication |
금지된. |
429 Too Many Requests |
Communication |
요청이 너무 많습니다. |
Other Status Codes |
Communication |
서비스를 사용할 수 없습니다. |
보안
Authorization
ACS(Azure Communication Services) 사용자 액세스 토큰입니다.
형식:
apiKey
In(다음 안에):
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
채팅 스레드를 업데이트하기 위한 페이로드를 요청합니다.
Name | 형식 | Description |
---|---|---|
topic |
string |
채팅 스레드 토픽입니다. |