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

# Debug Get Bidding Strategy Data

> Debug the get_bidding_strategy_data function.

Args:
    request (BiddingStrategyDataDebugRequest): The debug request parameters.
    approved_user (User): The authenticated user.

Returns:
    DebugFunctionResponse: The function execution result.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json post /api/v1/debug/assistant-functions/get-bidding-strategy-data
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/debug/assistant-functions/get-bidding-strategy-data:
    post:
      tags:
        - Debug
      summary: Debug Get Bidding Strategy Data
      description: |-
        Debug the get_bidding_strategy_data function.

        Args:
            request (BiddingStrategyDataDebugRequest): The debug request parameters.
            approved_user (User): The authenticated user.

        Returns:
            DebugFunctionResponse: The function execution result.
      operationId: >-
        debug_get_bidding_strategy_data_api_v1_debug_assistant_functions_get_bidding_strategy_data_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BiddingStrategyDataDebugRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DebugFunctionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    BiddingStrategyDataDebugRequest:
      properties:
        google_ads_customer_id:
          type: string
          title: Google Ads Customer Id
          description: The Google Ads customer ID
        google_ads_login_customer_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Google Ads Login Customer Id
          description: The Google Ads login customer ID
        campaign_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Campaign Id
          description: Optional campaign ID to filter by
        limit:
          anyOf:
            - type: integer
              maximum: 1000
              minimum: 1
            - type: 'null'
          title: Limit
          description: Maximum number of bidding strategies to retrieve
          default: 100
      type: object
      required:
        - google_ads_customer_id
      title: BiddingStrategyDataDebugRequest
      description: Schema for debugging get_bidding_strategy_data function.
    DebugFunctionResponse:
      properties:
        success:
          type: boolean
          title: Success
          description: Whether the function executed successfully
        data:
          type: string
          title: Data
          description: JSON string containing the function result or error information
        execution_time_ms:
          anyOf:
            - type: number
            - type: 'null'
          title: Execution Time Ms
          description: Function execution time in milliseconds
      type: object
      required:
        - success
        - data
      title: DebugFunctionResponse
      description: Schema for debug function responses.
    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
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````