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

# Get feedback by company

> Returns all feedback items linked to a specific company.



## OpenAPI

````yaml openapi.json get /v/alpha/feedback/company/{companyId}
openapi: 3.1.0
info:
  title: Operate API Documentation
  description: 'API for Operate: A CRM designed for sales, built for founders'
  version: Alpha
servers:
  - url: https://api.operate.so
security:
  - apiKey: []
tags:
  - name: Companies
    description: Manage companies and their associated data
  - name: People
    description: Manage people/contacts and their associated data
  - name: Deals
    description: Manage deals and opportunities
  - name: Feedback
    description: Manage customer feedback and feature requests
  - name: Next Steps
    description: Manage action items and next steps
  - name: Profiles
    description: Manage organization profiles (team members)
paths:
  /v/alpha/feedback/company/{companyId}:
    get:
      tags:
        - Feedback
      summary: Get feedback by company
      description: Returns all feedback items linked to a specific company.
      operationId: getVAlphaFeedbackCompanyByCompanyId
      parameters:
        - name: companyId
          in: path
          required: true
          schema:
            format: uuid
            description: The unique identifier (UUID) of the company
            examples:
              - 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Obtain from your Operate dashboard.

````