Microsoft Teams · Example Payload

Teams Graph Api Chat Message Example

ChatCollaborationCommunicationMicrosoft 365ProductivityVideo Conferencing

Teams Graph Api Chat Message Example is an example object payload from Microsoft Teams, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idcreatedDateTimelastModifiedDateTimemessageTypeimportancesubjectbodyfrom

Example Payload

Raw ↑
{
  "id": "msg-001",
  "createdDateTime": "2026-04-18T10:30:00Z",
  "lastModifiedDateTime": "2026-04-18T10:30:00Z",
  "messageType": "message",
  "importance": "normal",
  "subject": "Project Update",
  "body": {
    "contentType": "html",
    "content": "<p>Here is the latest update on the project.</p>"
  },
  "from": {
    "user": {
      "id": "user-123",
      "displayName": "Jane Smith"
    }
  }
}