> ## 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 Proof Point

> Update an existing proof point



## OpenAPI

````yaml post /api/v2/proof-point/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/proof-point/update:
    post:
      tags:
        - Proof Point
      summary: Update Proof Point
      description: Update an existing proof point
      operationId: updateProofPoint
      requestBody:
        description: Proof point update input
        content:
          application/json:
            schema:
              type: object
              properties:
                oId:
                  type: string
                  minLength: 1
                  description: The ID of the proof point to update
                  example: pp_1234
                name:
                  type: string
                  description: The name of the proof point
                  example: 50% Sales Improvement Case Study
                internalName:
                  type: string
                  description: The internal name of the proof point
                  example: CompanyX_Sales_Improvement_2024
                description:
                  type: string
                  description: A description of the proof point
                  example: >-
                    Customer achieved 50% improvement in sales conversion rates
                    within 6 months
                type:
                  type: string
                  enum:
                    - stat
                    - fact
                    - quote
                    - award
                    - recognition
                    - other
                  description: The type of proof point
                  example: stat
                theProof:
                  type: array
                  items:
                    type: string
                  description: >-
                    The complete evidence statement: the actual fact, statistic,
                    claim, metric, achievement or recognition AND where it comes
                    from and when (if available).
                  example:
                    - >-
                      50% improvement in sales conversion rates over 6 months
                      (Company X case study, 2024).
                whatItSupports:
                  type: array
                  items:
                    type: string
                  description: >-
                    The specific value claims, differentiators, or message this
                    proof point backs up — what links the proof into the broader
                    value story.
                  example:
                    - >-
                      Backs the claim that our solution drives near-term,
                      quantifiable revenue impact.
                howWeTalkAboutThis:
                  type: array
                  items:
                    type: string
                  description: How we talk about this proof point
                  example:
                    - >-
                      Our solution helped Company X achieve a 50% improvement in
                      sales conversion rates
                    - >-
                      Within 6 months, Company X saw significant improvement in
                      their sales process efficiency
                whyItMatters:
                  type: array
                  items:
                    type: string
                  description: >-
                    The strategic frame for why this proof point is compelling:
                    what objection it neutralizes, what doubt it removes, what
                    conviction it builds.
                  example:
                    - Demonstrates quantifiable ROI in a short timeframe
                    - Shows real-world impact on sales performance
                    - >-
                      Validates our solution's effectiveness in the enterprise
                      market
                customFields:
                  allOf:
                    - $ref: '#/components/schemas/CustomDataFields'
                    - description: Custom fields for additional proof point information
                additionalProperties:
                  type: object
                  additionalProperties:
                    anyOf:
                      - type: string
                      - type: array
                        items:
                          type: string
                      - type: number
                      - type: boolean
                  description: >-
                    Workspace-defined additional property values for this proof
                    point, keyed by property key.
                  example:
                    tier: Enterprise
                    region: APAC
              required:
                - oId
      responses:
        '200':
          description: Proof point updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: object
                    properties:
                      oId:
                        type: string
                      createdAt:
                        type: string
                        nullable: true
                        format: date-time
                      updatedAt:
                        type: string
                        nullable: true
                        format: date-time
                      deletedAt:
                        type: string
                        nullable: true
                        format: date-time
                      archivedAt:
                        type: string
                        nullable: true
                        format: date-time
                      name:
                        type: string
                      internalName:
                        type: string
                      description:
                        type: string
                      active:
                        type: boolean
                        default: true
                      data:
                        type: object
                        nullable: true
                        properties:
                          theProof:
                            type: array
                            nullable: true
                            items:
                              type: string
                          whatItSupports:
                            type: array
                            nullable: true
                            items:
                              type: string
                          howWeTalkAboutThis:
                            type: array
                            nullable: true
                            items:
                              type: string
                          whyItMatters:
                            type: array
                            nullable: true
                            items:
                              type: string
                          type:
                            type: string
                            enum:
                              - stat
                              - fact
                              - quote
                              - award
                              - recognition
                              - other
                          customFields:
                            $ref: '#/components/schemas/CustomDataFields'
                          additionalProperties:
                            type: object
                            additionalProperties:
                              anyOf:
                                - type: string
                                - type: array
                                  items:
                                    type: string
                                - type: number
                                - type: boolean
                      user:
                        type: object
                        nullable: true
                        properties:
                          oId:
                            type: string
                            nullable: true
                          firstName:
                            type: string
                            nullable: true
                            description: >-
                              The first name of the user who created the proof
                              point
                            example: John
                          lastName:
                            type: string
                            nullable: true
                            description: >-
                              The last name of the user who created the proof
                              point
                            example: Doe
                      workspace:
                        type: object
                        nullable: true
                        properties:
                          oId:
                            type: string
                            nullable: true
                    required:
                      - oId
                      - createdAt
                      - updatedAt
                      - name
                      - internalName
                      - description
                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: Proof point 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
    CustomDataFieldItem:
      type: object
      properties:
        title:
          type: string
        value:
          type: array
          items:
            type: string
      required:
        - title
        - value
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````