Freigeben über


Chat Thread - Remove Chat Participant

Entfernen eines Teilnehmers aus einem Thread.

POST {endpoint}/chat/threads/{chatThreadId}/participants/:remove?api-version=2024-03-07

URI-Parameter

Name In Erforderlich Typ Beschreibung
chatThreadId
path True

string

Thread-ID zum Entfernen des Teilnehmers aus.

endpoint
path True

string

Der Endpunkt der Azure Communication-Ressource.

api-version
query True

string

Version der API, die aufgerufen werden soll.

Anforderungsheader

Media Types: "application/json", "application/merge-patch+json"

Name Erforderlich Typ Beschreibung
Authorization True

string

Ein ACS(Azure Communication Services)-Benutzerzugriffstoken.

Anforderungstext

Media Types: "application/json", "application/merge-patch+json"

Name Typ Beschreibung
participantCommunicationIdentifier

CommunicationIdentifierModel

ID des Threadteilnehmers, der aus dem Thread entfernt werden soll.

Antworten

Name Typ Beschreibung
204 No Content

Anforderung erfolgreich.

401 Unauthorized

CommunicationErrorResponse

Unbefugt.

403 Forbidden

CommunicationErrorResponse

Verboten.

429 Too Many Requests

CommunicationErrorResponse

Zu viele Anforderungen.

Other Status Codes

CommunicationErrorResponse

Der Dienst ist nicht verfügbar.

Sicherheit

Authorization

Ein ACS(Azure Communication Services)-Benutzerzugriffstoken.

Typ: apiKey
In: header

Beispiele

Remove participant

Beispielanforderung

POST https://contoso.westus.communications.azure.com/chat/threads/19:f2167429acf6482880c6b7790a9086c1@thread.v2/participants/:remove?api-version=2024-03-07

{
  "rawId": "8:acs:8540c0de-899f-5cce-acb5-3ec493af3800_0e59221d-0c1d-46ae-9544-c963ce56c10b",
  "communicationUser": {
    "id": "8:acs:8540c0de-899f-5cce-acb5-3ec493af3800_0e59221d-0c1d-46ae-9544-c963ce56c10b"
  }
}

Beispiel für eine Antwort

{
  "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."
  }
}