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

# Google OAuth API

> This endpoint creates a new Google OAuth integration

### Path

<ParamField path="YOUR_INTEGRATION_NAME" type="string" required>
  The name that you want to use to reference your integration. Must only be alpha numeric with only lower case letters and no special characters except hyphens.
</ParamField>

### Body

<ParamField body="GOOGLE_CLIENT_ID" type="string" required>
  The Google Client Id that Google generates for you
</ParamField>

<ParamField body="GOOGLE_CLIENT_SECRET" type="string" required>
  The Google Client Secret that Google generates for you
</ParamField>

### Response

<ResponseField name="statusCode" type="number">
  Based off of standard HTTP request guidelines
</ResponseField>

<ResponseField name="body" type="object">
  Information concerning your newly created Google OAuth integration
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "statusCode": 200,
    "body" {
      ...
      compelete: true,
    }
  }
  ```

  ```json Error Response theme={null}
  {
    "statusCode": 400,
    "body" {
      err: { ... },
      compelete: false
    }
  }
  ```
</ResponseExample>
