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

# List Integrations

> List connected (non-deleted) integrations for the current company. Encrypted tokens are never returned; internal operational metadata is also withheld.

List third-party integrations connected to the current company. Encrypted access and refresh tokens are **never** returned by this endpoint — only the public metadata needed to display the connection state.

Required scope: `integrations:read`.

Soft-deleted (disconnected) rows are filtered out. Pass `?provider=google_calendar` to filter to a specific provider.

Use the `status` field to drive UI:

* `active` — ready to use in flow tool-call nodes
* `disconnected` — refresh token revoked or invalidated; the user needs to reconnect
* `error` — repeated refresh failures; the bot will hit the `error` transition on tool-call nodes that reference this row


## OpenAPI

````yaml GET /integrations
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /integrations:
    get:
      tags:
        - Integrations
      summary: List integrations
      description: >-
        List connected (non-deleted) integrations for the current company.
        Encrypted tokens are never returned; internal operational metadata is
        also withheld.
      operationId: listIntegrations
      parameters:
        - in: query
          name: provider
          schema:
            type: string
            enum:
              - google_calendar
              - gmail
          description: Filter by provider.
      responses:
        '200':
          description: Integrations list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Integration'
components:
  schemas:
    Integration:
      type: object
      description: >-
        Public view of a connected integration credential. Encrypted token
        columns are NEVER returned; internal operational metadata is also
        withheld.
      properties:
        id:
          type: string
          format: uuid
        provider:
          type: string
          enum:
            - google_calendar
            - gmail
        account_label:
          type: string
          example: team@clinicpro.ai
          description: Email or stable identifier for the connected account
        scopes:
          type: array
          items:
            type: string
        status:
          type: string
          enum:
            - active
            - disconnected
            - error
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````