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

# Get authgoogleinitiate



## OpenAPI

````yaml GET /auth/google/initiate
openapi: 3.0.0
info:
  title: PLEC API
  description: PLEC backend API reference
  version: '1.0'
  contact: {}
servers:
  - url: https://api.plec-it.com
    description: Production
  - url: https://api-staging.plec-it.com
    description: Staging
  - url: http://localhost:3000
    description: Local Development
security: []
tags: []
paths:
  /auth/google/initiate:
    get:
      tags:
        - GoogleOAuth
      operationId: GoogleOAuthController_initiateOAuth
      parameters:
        - name: state
          required: true
          in: query
          schema:
            type: string
        - name: hd
          required: true
          in: query
          schema:
            type: string
        - name: redirect_uri
          required: true
          in: query
          schema:
            type: string
        - name: frontend_redirect_uri
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''

````