Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
APIs under the /beta version are subject to change. Use of these APIs in production applications is not supported.
Represents a message in a Copilot conversation being continued through the Microsoft 365 Copilot Chat API.
Properties
| Property | Type | Description |
|---|---|---|
adaptiveCards |
Edm.Untyped collection | List of raw JSON representations of adaptive cards. This property may be empty. |
attributions |
copilotConversationAttribution collection | The list of attributions (either citations or annotations) included in the chat message response. |
createdDateTime |
DateTimeOffset | The timestamp when the chat message was created. |
id |
String | The identifier for the Copilot conversation. This is used as a path parameter when continuing a synchronous or streamed conversation. |
sensitivityLabel |
searchSensitivityLabelInfo | Defines the highest sensitivity (most restricted) resource used to create the chat message. |
text |
String | The chat message text. This either recaps the submitted prompt or articulates the Microsoft 365 Copilot Chat API's response. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.copilotConversationResponseMessage",
"id": "String",
"text": "String",
"createdDateTime": "DateTimeOffset",
"adaptiveCards": [
{
"@odata.type": "#microsoft.graph.Edm.Untyped"
}
],
"attributions": [
{
"@odata.type": "#microsoft.graph.copilotConversationAttribution"
}
],
"sensitivityLabel": {
"@odata.type": "#microsoft.graph.searchSensitivityLabelInfo"
}
}