Microsoft Teams · Example Payload

Microsoft Teams Listchannels Example

ChatCollaborationCommunicationMicrosoft 365ProductivityVideo Conferencing

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

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listChannels",
  "method": "GET",
  "path": "/teams/{team-id}/channels",
  "summary": "Microsoft Teams List Channels",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "ListChannels200Example",
      "example": {
        "value": [
          {
            "id": "19:abc123@thread.tacv2",
            "displayName": "General",
            "description": "General discussion channel.",
            "membershipType": "standard"
          }
        ]
      }
    }
  ]
}