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

# Update portfolio company status

> Update the status of a company within a fund. Use this to mark companies as
active, exited, or dissolved within a specific fund's portfolio.




## OpenAPI

````yaml /openapi.yaml patch /funds/{fundPublicId}/companies/{organizationPublicId}/status
openapi: 3.1.0
info:
  title: Concrete API
  description: >
    The Concrete API provides programmatic access to view and create select data
    in Concrete.  The API is primarily intended to facilitate data pipeline
    automations for portfolio management.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Concrete Support
    email: support@concretehq.com
    url: https://concretehq.com
servers:
  - url: https://app.concretehq.com/api/v1
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Authentication and member information
  - name: Companies
    description: Portfolio company management
  - name: Funds
    description: Fund and portfolio management
  - name: Meetings
    description: External meeting imports
  - name: Notes
    description: Notes attached to companies and people
  - name: Connections
    description: Data connections and message uploads
  - name: Trackers
    description: Tracked metrics and their per-company value history
paths:
  /funds/{fundPublicId}/companies/{organizationPublicId}/status:
    patch:
      tags:
        - Funds
      summary: Update portfolio company status
      description: >
        Update the status of a company within a fund. Use this to mark companies
        as

        active, exited, or dissolved within a specific fund's portfolio.
      operationId: updatePortfolioCompanyStatus
      parameters:
        - name: fundPublicId
          in: path
          description: Fund public ID
          required: true
          schema:
            type: string
        - name: organizationPublicId
          in: path
          description: Company public ID
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PortfolioCompanyStatusInput'
      responses:
        '204':
          description: Status updated successfully
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    PortfolioCompanyStatusInput:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - active
            - exited
            - dissolved
          description: New status for the company within the fund's portfolio
          example: active
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message
          example: Not found
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication using Bearer token format

````