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

# Update Workspace Company

> Update the workspace company. There is exactly one workspace company per workspace; the caller's workspace is inferred from the API key.



## OpenAPI

````yaml post /api/v2/workspace-company/update
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/workspace-company/update:
    post:
      tags:
        - Workspace Company
      summary: Update Workspace Company
      description: >-
        Update the workspace company. There is exactly one workspace company per
        workspace; the caller's workspace is inferred from the API key.
      operationId: updateWorkspaceCompany
      requestBody:
        description: Workspace Company update input
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: The external name of the workspace company
                  example: Acme Corp
                internalName:
                  type: string
                  description: The internal name of the workspace company
                  example: Acme
                description:
                  type: string
                  description: A description of the workspace company
                  example: Acme builds GTM tooling for B2B SaaS teams.
                url:
                  type: string
                  description: The website URL for the workspace company
                  example: https://acme.com
                whyWeExist:
                  type: array
                  items:
                    type: string
                  description: Why the company exists
                  example:
                    - >-
                      Help B2B teams scale outbound without losing
                      personalization
                howWePositionOurselves:
                  type: array
                  items:
                    type: string
                  description: How the company positions itself in the market
                  example:
                    - The first sales platform built around the buying journey
                whoWeHelp:
                  type: array
                  items:
                    type: string
                  description: Who the company helps
                  example:
                    - B2B sales teams at high-growth SaaS companies
                whatMakesUsUnique:
                  type: array
                  items:
                    type: string
                  description: What makes the company unique
                  example:
                    - >-
                      Bidirectional knowledge graph connecting library to
                      outcomes
                businessModel:
                  type: array
                  items:
                    type: string
                  description: The company's business model
                  example:
                    - Annual subscription, seat-based pricing
                marketDynamics:
                  type: array
                  items:
                    type: string
                  description: Market dynamics the company operates within
                  example:
                    - AI-driven sales tooling consolidation
                whyCustomersBuy:
                  type: array
                  items:
                    type: string
                  description: Why customers buy
                  example:
                    - Higher reply rates without expanding the SDR team
                whyCustomersCare:
                  type: array
                  items:
                    type: string
                  description: Why customers care
                  example:
                    - Sales productivity directly drives revenue growth
                customFields:
                  allOf:
                    - $ref: '#/components/schemas/CustomDataFields'
                    - description: >-
                        Custom fields for additional workspace company
                        information
                customMarketFields:
                  allOf:
                    - $ref: '#/components/schemas/CustomDataFields'
                    - description: Custom market-specific fields
      responses:
        '200':
          description: Workspace Company updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    $ref: '#/components/schemas/WorkspaceCompany'
                required:
                  - _metadata
                  - data
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
        '404':
          description: Workspace Company not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
      deprecated: false
components:
  schemas:
    CustomDataFields:
      type: array
      items:
        $ref: '#/components/schemas/CustomDataFieldItem'
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          example: 0
          description: API usage
        requestId:
          type: string
          example: requestId
          description: Request ID
        message:
          type: string
          example: message
          description: Message
        timestamp:
          type: string
          example: '2021-01-01T00:00:00.000Z'
          description: Timestamp
      required:
        - requestId
        - timestamp
    WorkspaceCompany:
      type: object
      properties:
        oId:
          type: string
          description: Workspace Company OId
        createdAt:
          type: string
          nullable: true
          format: date-time
          description: Creation date
        updatedAt:
          type: string
          nullable: true
          format: date-time
          description: Updated date
        data:
          $ref: '#/components/schemas/WorkspaceCompanyData'
        description:
          type: string
          description: Workspace Company description
        name:
          type: string
          description: Workspace Company name
        url:
          type: string
          description: Workspace Company website URL
        internalName:
          type: string
          nullable: true
          description: Internal name for the workspace company
        user:
          type: object
          nullable: true
          properties:
            oId:
              type: string
          required:
            - oId
          description: User who owns the workspace company
        workspace:
          type: object
          nullable: true
          properties:
            oId:
              type: string
              nullable: true
          description: Workspace the company belongs to
        intelOverride:
          type: object
          nullable: true
          properties:
            enabled:
              type: boolean
            cadence:
              type: string
              enum:
                - weekly
                - biweekly
                - monthly
            guidance:
              type: string
              nullable: true
      required:
        - oId
        - createdAt
        - updatedAt
        - description
        - name
        - url
    CustomDataFieldItem:
      type: object
      properties:
        title:
          type: string
        value:
          type: array
          items:
            type: string
      required:
        - title
        - value
    WorkspaceCompanyData:
      type: object
      nullable: true
      properties:
        whatWeDo:
          type: string
          nullable: true
        whyWeExist:
          type: array
          items:
            type: string
        howWePositionOurselves:
          type: array
          items:
            type: string
        whoWeHelp:
          type: array
          items:
            type: string
        whatMakesUsUnique:
          type: array
          items:
            type: string
        businessModel:
          type: array
          items:
            type: string
        marketDynamics:
          type: array
          items:
            type: string
        whyCustomersBuy:
          type: array
          nullable: true
          items:
            type: string
        whyCustomersCare:
          type: array
          nullable: true
          items:
            type: string
        customFields:
          $ref: '#/components/schemas/CustomDataFields'
        customMarketFields:
          $ref: '#/components/schemas/CustomDataFields'
      required:
        - whyWeExist
        - howWePositionOurselves
        - whoWeHelp
        - whatMakesUsUnique
        - businessModel
        - marketDynamics
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````