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

# List Google Ads Accounts

> Enumerate the Google Ads accounts this workspace can manage (under the
operator MCC), for the bind picker. Empty until OAuth is connected.



## OpenAPI

````yaml /openapi.json get /api/v1/workspaces/{workspace_id}/integrations/google-ads/accounts
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/workspaces/{workspace_id}/integrations/google-ads/accounts:
    get:
      tags:
        - Integrations
      summary: List Google Ads Accounts
      description: |-
        Enumerate the Google Ads accounts this workspace can manage (under the
        operator MCC), for the bind picker. Empty until OAuth is connected.
      operationId: >-
        list_google_ads_accounts_api_v1_workspaces__workspace_id__integrations_google_ads_accounts_get
      parameters:
        - name: workspace_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Workspace Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GoogleAdsAccountOption'
                title: >-
                  Response List Google Ads Accounts Api V1 Workspaces  Workspace
                  Id  Integrations Google Ads Accounts Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    GoogleAdsAccountOption:
      properties:
        customer_id:
          type: string
          title: Customer Id
        descriptive_name:
          type: string
          title: Descriptive Name
        currency_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency Code
        is_manager:
          type: boolean
          title: Is Manager
          default: false
      type: object
      required:
        - customer_id
        - descriptive_name
      title: GoogleAdsAccountOption
      description: One selectable Google Ads account for the bind picker (PLAN-2 P2-PR1b).
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````