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

# Push Recommendation

> Push recommendation to an external tracker (Jira / Linear / GitHub / ServiceNow).

WP-C: real delivery (creating an actual ticket) is a future connector
call this wave doesn't build — there is no tracker integration wired up
yet to produce a real ticket number/URL. Fabricating one (the old
hash-derived ticket_id/tracker_urls stub) violates the "real stored data
or honest empty" rule, so the response now only promises {queued: true,
external_ref: null}. If the workspace has no CONNECTED connector of the
requested tracker type at all, this is a 409 rather than a silent no-op —
there's nothing to queue a delivery against.



## OpenAPI

````yaml /openapi.json post /v1/recommendations/{rec_id}/push
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/recommendations/{rec_id}/push:
    post:
      tags:
        - recommendations
      summary: Push Recommendation
      description: >-
        Push recommendation to an external tracker (Jira / Linear / GitHub /
        ServiceNow).


        WP-C: real delivery (creating an actual ticket) is a future connector

        call this wave doesn't build — there is no tracker integration wired up

        yet to produce a real ticket number/URL. Fabricating one (the old

        hash-derived ticket_id/tracker_urls stub) violates the "real stored data

        or honest empty" rule, so the response now only promises {queued: true,

        external_ref: null}. If the workspace has no CONNECTED connector of the

        requested tracker type at all, this is a 409 rather than a silent no-op
        —

        there's nothing to queue a delivery against.
      operationId: push_recommendation_v1_recommendations__rec_id__push_post
      parameters:
        - in: path
          name: rec_id
          required: true
          schema:
            title: Rec Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PushBody'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    PushBody:
      properties:
        assignee_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Assignee Email
        project:
          default: ENG
          maxLength: 100
          minLength: 1
          title: Project
          type: string
        tracker:
          default: jira
          enum:
            - jira
            - linear
            - github
            - servicenow
          title: Tracker
          type: string
      title: PushBody
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````