Chat Thread - Delete Chat Message
Tar bort ett meddelande.
DELETE {endpoint}/chat/threads/{chatThreadId}/messages/{chatMessageId}?api-version=2024-03-07
URI-parametrar
Name | I | Obligatorisk | Typ | Description |
---|---|---|---|---|
chat
|
path | True |
string |
Meddelande-ID:t. |
chat
|
path | True |
string |
Det tråd-ID som meddelandet skickades till. |
endpoint
|
path | True |
string |
Slutpunkten för Azure Communication-resursen. |
api-version
|
query | True |
string |
Version av API som ska anropas. |
Begärandehuvud
Name | Obligatorisk | Typ | Description |
---|---|---|---|
Authorization | True |
string |
En ACS-användaråtkomsttoken (Azure Communication Services). |
Svar
Name | Typ | Description |
---|---|---|
204 No Content |
Begäran lyckades. |
|
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
Delete message
Exempelbegäran
DELETE https://contoso.westus.communications.azure.com/chat/threads/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/messages/1591768249318?api-version=2024-03-07
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."
}
}