> ## 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.

# Generate Buying Triggers

> Generate buying trigger analysis from source materials using AI.



## OpenAPI

````yaml post /api/v2/buying-trigger/generate
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/buying-trigger/generate:
    post:
      tags:
        - Buying Trigger
      summary: Generate Buying Triggers
      description: Generate buying trigger analysis from source materials using AI.
      operationId: generateBuyingTriggers
      requestBody:
        description: Buying trigger generation input with source materials
        content:
          application/json:
            schema:
              type: object
              properties:
                primaryOfferingOId:
                  type: string
                  description: >-
                    Primary Offering to use as context when generating buying
                    triggers. If not provided, the primary company attached to
                    the Workspace will be used.
                  example: o_123456
                linkingStrategy:
                  allOf:
                    - $ref: '#/components/schemas/LinkingStrategy'
                    - description: >-
                        Strategy for linking generated buying triggers to
                        offerings (products/services)
                buyingTriggers:
                  $ref: '#/components/schemas/BuyingTriggerGenerationInputs'
                brandVoiceOId:
                  type: string
                  description: Brand voice oId to apply to generated buying triggers
                  example: bv_123456
              required:
                - buyingTriggers
      responses:
        '200':
          description: Buying triggers generated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        oId:
                          type: string
                        createdAt:
                          type: string
                          nullable: true
                        updatedAt:
                          type: string
                          nullable: true
                        deletedAt:
                          type: string
                          nullable: true
                        archivedAt:
                          type: string
                          nullable: true
                        name:
                          type: string
                        internalName:
                          type: string
                        description:
                          type: string
                        active:
                          type: boolean
                          default: true
                        data:
                          type: object
                          nullable: true
                          properties:
                            whyThisCreatesUrgency:
                              type: array
                              items:
                                type: string
                            whoFeelsThisMost:
                              type: array
                              items:
                                type: string
                            costOfInaction:
                              type: array
                              items:
                                type: string
                            howWeHelpInThisMoment:
                              type: array
                              items:
                                type: string
                            customFields:
                              $ref: '#/components/schemas/CustomDataFields'
                          required:
                            - whyThisCreatesUrgency
                            - whoFeelsThisMost
                            - costOfInaction
                            - howWeHelpInThisMoment
                        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
                                buying trigger
                              example: John
                            lastName:
                              type: string
                              nullable: true
                              description: >-
                                The last name of the user who created the buying
                                trigger
                              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 - invalid sources or unable to process
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
        '404':
          description: Offering not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
      deprecated: false
components:
  schemas:
    LinkingStrategy:
      oneOf:
        - $ref: '#/components/schemas/LinkingStrategyAll'
        - $ref: '#/components/schemas/LinkingStrategySpecific'
      discriminator:
        propertyName: mode
        mapping:
          ALL:
            $ref: '#/components/schemas/LinkingStrategyAll'
          SPECIFIC:
            $ref: '#/components/schemas/LinkingStrategySpecific'
      default:
        mode: ALL
      description: Strategy for linking this persona to offerings (products/services)
    BuyingTriggerGenerationInputs:
      type: array
      items:
        type: object
        properties:
          name:
            type: string
            description: >-
              Optional name for the buying trigger - if provided, will be used
              as the entity name
            example: New CTO hired
          sources:
            type: array
            items:
              type: object
              properties:
                type:
                  type: string
                  enum:
                    - TEXT
                    - URL
                    - RESOURCE
                  description: The type of source material
                  example: TEXT
                value:
                  type: string
                  minLength: 1
                  description: The source content (text, URL, or name)
                  example: Lead generation and qualification for enterprise sales
              required:
                - type
                - value
            description: Source materials to generate the buying trigger analysis from
        required:
          - sources
      minItems: 1
      description: >-
        Array of buying trigger generation requests - each object generates one
        buying trigger analysis
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          description: API usage
          example: 0
        requestId:
          type: string
          description: Request ID
          example: requestId
        message:
          type: string
          description: Message
          example: message
        timestamp:
          type: string
          description: Timestamp
          example: '2021-01-01T00:00:00.000Z'
      required:
        - requestId
        - timestamp
    CustomDataFields:
      type: array
      items:
        $ref: '#/components/schemas/CustomDataFieldItem'
    LinkingStrategyAll:
      type: object
      properties:
        mode:
          type: string
          enum:
            - ALL
          description: >-
            Link to all active offerings in the workspace (products, services,
            and solutions)
          example: ALL
      required:
        - mode
    LinkingStrategySpecific:
      type: object
      properties:
        mode:
          type: string
          enum:
            - SPECIFIC
          description: >-
            Link to specific offerings by their IDs (products, services, and
            solutions)
          example: SPECIFIC
        offeringOIds:
          type: array
          items:
            type: string
            minLength: 1
          minItems: 1
          description: >-
            Array of offering IDs to link to (supports product, service, and
            solution oIds)
          example:
            - px_123
            - sc_456
            - sv_789
      required:
        - mode
        - offeringOIds
    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

````