Chat Thread - Update Chat Message
メッセージを更新します。
PATCH {endpoint}/chat/threads/{chatThreadId}/messages/{chatMessageId}?api-version=2024-03-07
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
chat
|
path | True |
string |
メッセージ ID。 |
chat
|
path | True |
string |
メッセージが送信されたスレッド ID。 |
endpoint
|
path | True |
string |
Azure Communication リソースのエンドポイント。 |
api-version
|
query | True |
string |
呼び出す API のバージョン。 |
要求ヘッダー
Media Types: "application/merge-patch+json"
名前 | 必須 | 型 | 説明 |
---|---|---|---|
Authorization | True |
string |
ACS (Azure Communication Services) ユーザー アクセス トークン。 |
要求本文
Media Types: "application/merge-patch+json"
名前 | 型 | 説明 |
---|---|---|
content |
string |
チャット メッセージの内容。 |
metadata |
object |
メッセージ メタデータ。 |
応答
名前 | 型 | 説明 |
---|---|---|
204 No Content |
メッセージが正常に更新されました。 |
|
401 Unauthorized |
Communication |
不正。 |
403 Forbidden |
Communication |
禁じられた。 |
429 Too Many Requests |
Communication |
要求が多すぎます。 |
Other Status Codes |
Communication |
サービスは使用できません。 |
セキュリティ
Authorization
ACS (Azure Communication Services) ユーザー アクセス トークン。
型:
apiKey
/:
header
例
Update message content
要求のサンプル
PATCH https://contoso.westus.communications.azure.com/chat/threads/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/messages/1591768249318?api-version=2024-03-07
{
"content": "Updated message content",
"metadata": {
"someKey1": "someValue1",
"someKey2": "someValue2"
}
}
応答のサンプル
{
"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."
}
}
定義
UpdateChatMessageRequest
チャット メッセージを更新するための要求ペイロード。
名前 | 型 | 説明 |
---|---|---|
content |
string |
チャット メッセージの内容。 |
metadata |
object |
メッセージ メタデータ。 |