Microsoft Teams · JSON Structure

Teams Graph Api Channel Structure

Represents a channel in a team.

Type: object Properties: 6
ChatCollaborationCommunicationMicrosoft 365ProductivityVideo Conferencing

Channel is a JSON Structure definition published by Microsoft Teams, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id displayName description membershipType createdDateTime webUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-teams/refs/heads/main/json-structure/teams-graph-api-channel-structure.json",
  "name": "Channel",
  "description": "Represents a channel in a team.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Unique identifier for the channel." },
    "displayName": { "type": "string", "description": "The display name of the channel." },
    "description": { "type": "string", "description": "Description of the channel." },
    "membershipType": { "type": "string", "enum": ["standard", "private", "shared"], "description": "Type of membership." },
    "createdDateTime": { "type": "datetime", "description": "When the channel was created." },
    "webUrl": { "type": "uri", "description": "URL to the channel in Teams." }
  }
}