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

# Get Auth Methods

> Get available authentication methods for an integration.

Returns simplified authentication configuration without sensitive details.
Useful for building authentication UI flows.

**Example:**
```
GET /integrations/gmail/auth-methods
GET /integrations/slack/auth-methods
```



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/integrations/{integration_id}/auth-methods
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/integrations/{integration_id}/auth-methods:
    get:
      tags:
        - Integrations
      summary: Get Auth Methods
      description: >-
        Get available authentication methods for an integration.


        Returns simplified authentication configuration without sensitive
        details.

        Useful for building authentication UI flows.


        **Example:**

        ```

        GET /integrations/gmail/auth-methods

        GET /integrations/slack/auth-methods

        ```
      operationId: get_auth_methods_api_v1_integrations__integration_id__auth_methods_get
      parameters:
        - name: integration_id
          in: path
          required: true
          schema:
            type: string
            title: Integration Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````