Chat Thread - Send Chat Message
Hiermee wordt een bericht verzonden naar een thread.
POST {endpoint}/chat/threads/{chatThreadId}/messages?api-version=2024-03-07
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
chat
|
path | True |
string |
De thread-id waar het bericht naartoe moet worden verzonden. |
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
Name | Vereist | Type | Description |
---|---|---|---|
Authorization | True |
string |
Een ACS-gebruikerstoegangstoken (Azure Communication Services). |
Aanvraagbody
Name | Vereist | Type | Description |
---|---|---|---|
content | True |
string |
Inhoud van chatberichten. |
metadata |
object |
Berichtmetagegevens. |
|
senderDisplayName |
string |
De weergavenaam van de afzender van het chatbericht. Deze eigenschap wordt gebruikt om de naam van de afzender in te vullen voor pushmeldingen. |
|
type |
Het type chatbericht. |
Antwoorden
Name | Type | Description |
---|---|---|
201 Created |
Bericht verzonden, de |
|
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
Send Message
Voorbeeldaanvraag
POST https://contoso.westus.communications.azure.com/chat/threads/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/messages?api-version=2024-03-07
{
"content": "Let's head out for lunch in 15 minutes.",
"senderDisplayName": "Jane",
"metadata": {
"someKey1": "someValue1",
"someKey2": "someValue2"
}
}
Voorbeeldrespons
Location: https://contoso.westus.communications.azure.com/chat/threads/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/messages/1593072104708
{
"id": "1593072104708"
}
{
"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
Name | Description |
---|---|
Chat |
Het type chatbericht. |
Send |
Details van het te verzenden bericht. |
Send |
Resultaat van de verzendberichtbewerking. |
ChatMessageType
Het type chatbericht.
Waarde | Description |
---|---|
html | |
participantAdded | |
participantRemoved | |
text | |
topicUpdated |
SendChatMessageRequest
Details van het te verzenden bericht.
Name | Type | Description |
---|---|---|
content |
string |
Inhoud van chatberichten. |
metadata |
object |
Berichtmetagegevens. |
senderDisplayName |
string |
De weergavenaam van de afzender van het chatbericht. Deze eigenschap wordt gebruikt om de naam van de afzender in te vullen voor pushmeldingen. |
type |
Het type chatbericht. |
SendChatMessageResult
Resultaat van de verzendberichtbewerking.
Name | Type | Description |
---|---|---|
id |
string |
Een door de server gegenereerde bericht-id. |