> ## 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 Email Intake Configs

> List the email addresses a team receives tickets through. Each config's id is the referent an assignment-rule intake condition points at (encoded "email:<id>"); connected Slack and Microsoft Teams channels are the other intake id-space. Requires email-intake:read for scoped API keys.



## OpenAPI

````yaml /sections/api-reference/openapi-spec-v2.yaml get /v2/teams/{team_id}/email-intake-configs
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: Email Intake 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 SDLC Settings API
  - name: Team User API
  - name: Ticket API
  - name: Topic API
  - name: User API
  - name: User Relationship API
  - name: Widgets API
  - name: Worker API
  - name: Workflow API
  - name: Workflow Approval Procedure API
  - name: Workflow Run API
paths:
  /v2/teams/{team_id}/email-intake-configs:
    get:
      tags:
        - Email Intake API
      summary: List Email Intake Configs
      description: >-
        List the email addresses a team receives tickets through. Each config's
        id is the referent an assignment-rule intake condition points at
        (encoded "email:<id>"); connected Slack and Microsoft Teams channels are
        the other intake id-space. Requires email-intake:read for scoped API
        keys.
      operationId: svrelay.publicv2.PublicAPIServiceV2.ListEmailIntakeConfigs
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            title: team_id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/svhelp.publicapi.ListEmailIntakeConfigsResponse
      security:
        - BearerAuth: []
components:
  schemas:
    svhelp.publicapi.ListEmailIntakeConfigsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/svhelp.pubapimodels.EmailIntakeConfig'
          title: data
          x-stainless-terraform-configurability: optional
      title: ListEmailIntakeConfigsResponse
      additionalProperties: false
    svhelp.pubapimodels.EmailIntakeConfig:
      type: object
      properties:
        id:
          type: string
          title: id
          x-stainless-terraform-configurability: optional
        teamId:
          type: string
          title: team_id
          x-stainless-terraform-configurability: optional
        emailAddress:
          type: string
          title: email_address
          x-stainless-terraform-configurability: optional
        label:
          type:
            - string
            - 'null'
          title: label
          x-stainless-terraform-configurability: optional
        isDefault:
          type: boolean
          title: is_default
          x-stainless-terraform-configurability: computed_optional
      title: EmailIntakeConfig
      additionalProperties: false
      description: >-
        An email address a team receives tickets through. Its id is the referent
        an
         assignment-rule intake condition points at (encoded "email:<id>"); the
         connected-channel id-space ("channel:<id>") is the other half.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````