> ## Documentation Index
> Fetch the complete documentation index at: https://docs.serval.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Connected Channels

> List existing Slack and Microsoft Teams channel connections, including disabled channels. Direct-message, deleted, and other intake bindings are excluded. Filter by service_instance_id to select an integration instance. Requires channels:read for scoped API keys.



## OpenAPI

````yaml /sections/api-reference/openapi-spec-v2.yaml get /v2/teams/{team_id}/connected-channels
openapi: 3.1.0
info:
  title: Serval Public API
  description: Serval Public API
  contact:
    name: Serval
    url: https://serval.com
    email: support@serval.com
  license:
    name: Serval License
    url: https://serval.com/license
  version: 2.0.0
servers:
  - url: https://public.api.serval.com
security:
  - BearerAuth: []
tags:
  - name: Access Membership API
  - name: Access Policy API
  - name: Access Policy Approval Procedure API
  - name: Access Profile API
  - name: Access Relationship API
  - name: Access Request API
  - name: Agent API
  - name: Analytics API
  - name: App Instance API
  - name: App Resource API
  - name: App Resource Role API
  - name: Approval Delegation API
  - name: Approval Procedure API
  - name: Approval Request API
  - name: Assignment Rules API
  - name: Audit Log API
  - name: Change Blackout API
  - name: Change Model API
  - name: Connected Channels API
  - name: Custom Field API
  - name: Custom Service API
  - name: Dashboards API
  - name: Entity API
  - name: Entity Field Mapping API
  - name: Entity Ingestion Config API
  - name: Entity Type API
  - name: Folder API
  - name: Forms API
  - name: Group API
  - name: Guidance API
  - name: Help Agent API
  - name: Journey API
  - name: Knowledge API
  - name: Knowledge Base API
  - name: One-Time Window API
  - name: Report API
  - name: Roles API
  - name: SLA API
  - name: Schedule API
  - name: Tag API
  - name: Team API
  - name: Team Group API
  - name: Team User API
  - name: Ticket API
  - name: Topic API
  - name: User API
  - name: User Relationship API
  - name: Widgets API
  - name: Workflow API
  - name: Workflow Approval Procedure API
  - name: Workflow Run API
paths:
  /v2/teams/{team_id}/connected-channels:
    get:
      tags:
        - Connected Channels API
      summary: List Connected Channels
      description: >-
        List existing Slack and Microsoft Teams channel connections, including
        disabled channels. Direct-message, deleted, and other intake bindings
        are excluded. Filter by service_instance_id to select an integration
        instance. Requires channels:read for scoped API keys.
      operationId: svrelay.publicv2.PublicAPIServiceV2.ListConnectedChannels
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            title: team_id
        - name: serviceInstanceId
          in: query
          schema:
            type: string
            title: service_instance_id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/svhelp.publicapi.ListConnectedChannelsResponse
      security:
        - BearerAuth: []
components:
  schemas:
    svhelp.publicapi.ListConnectedChannelsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/svhelp.pubapimodels.ConnectedChannel'
          title: data
          x-stainless-terraform-configurability: optional
      title: ListConnectedChannelsResponse
      additionalProperties: false
    svhelp.pubapimodels.ConnectedChannel:
      type: object
      properties:
        id:
          type: string
          title: id
          x-stainless-terraform-configurability: optional
        serviceType:
          type: string
          title: service_type
          x-stainless-terraform-configurability: optional
        serviceInstanceId:
          type: string
          title: service_instance_id
          x-stainless-terraform-configurability: optional
        serviceChannelId:
          type: string
          title: service_channel_id
          x-stainless-terraform-configurability: optional
        serviceChannelName:
          type: string
          title: service_channel_name
          x-stainless-terraform-configurability: optional
        mode:
          $ref: '#/components/schemas/svhelp.models.ConnectedServiceMode'
          title: mode
          x-stainless-terraform-configurability: optional
      title: ConnectedChannel
      additionalProperties: false
    svhelp.models.ConnectedServiceMode:
      type: string
      title: ConnectedServiceMode
      enum:
        - CONNECTED_SERVICE_MODE_UNSPECIFIED
        - CONNECTED_SERVICE_MODE_DISABLED
        - CONNECTED_SERVICE_MODE_TICKET_ONLY
        - CONNECTED_SERVICE_MODE_SILENT_ASSIST
        - CONNECTED_SERVICE_MODE_FULL_ASSIST
        - CONNECTED_SERVICE_MODE_TEAM_ONLY
        - CONNECTED_SERVICE_MODE_DM
        - CONNECTED_SERVICE_MODE_TEAM_INBOX
        - CONNECTED_SERVICE_MODE_TEAM_INBOX_ALL
        - CONNECTED_SERVICE_MODE_ON_DEMAND
        - CONNECTED_SERVICE_MODE_ASSISTANT
        - CONNECTED_SERVICE_MODE_REDIRECT_TO_DM
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````