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

# Return the service account email used for Google Drive access

> Return the service account email from the Google Drive connector in the
connector registry (catalog-api).



## OpenAPI

````yaml /api-reference/knowledge-api.json get /v1/knowledge/gdrive/info
openapi: 3.1.0
info:
  title: Strattum Knowledge API
  description: >-
    REST API that serves semantic document search — embeddings via the
    configured LLM provider, indexed in Qdrant, with metadata stored in
    PostgreSQL. (PRD-004, Workstream 1.4)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/knowledge/gdrive/info:
    get:
      tags:
        - ingest
        - ingest
      summary: Return the service account email used for Google Drive access
      description: |-
        Return the service account email from the Google Drive connector in the
        connector registry (catalog-api).
      operationId: gdrive_info_v1_knowledge_gdrive_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GDriveInfoResponse'
components:
  schemas:
    GDriveInfoResponse:
      properties:
        service_account_email:
          type: string
          title: Service Account Email
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
      type: object
      required:
        - service_account_email
      title: GDriveInfoResponse
      description: Response for GET /v1/knowledge/gdrive/info.

````