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

# Process feedback

> Mark a feedback as processed, optionally attaching it to one or more cards. Attaching highlights the entire feedback and creates an insight linked to the given cards — the same linking that happens when feedback is created with cardIds.



## OpenAPI

````yaml https://api.vistaly.com/v1/swagger.json post /v1/feedback/{feedbackId}/process
openapi: 3.1.0
info:
  contact:
    email: support@vistaly.com
    name: Vistaly Support Team
  description: >-
    Vistaly's public API for interacting with our platform, enabling developers
    to integrate with various features such as feedback, cards, and system
    health.
  termsOfService: https://vistaly.com/terms-of-service
  title: Vistaly API
  version: '2025-06-21'
servers:
  - description: Production server
    url: https://api.vistaly.com
security: []
tags:
  - description: System-related endpoints to interact with the overall service.
    name: system
  - description: >-
      Endpoints related to card management, including the creation and
      modification of card metrics and related data.
    externalDocs:
      description: Learn more about Cards
      url: https://docs.vistaly.com/en/card-types/overview
    name: cards
  - description: >-
      Endpoints for handling insights data, such as user feedback and interview
      records.
    externalDocs:
      description: Learn more about Insights
      url: https://docs.vistaly.com/en/insights/overview
    name: insights
paths:
  /v1/feedback/{feedbackId}/process:
    post:
      tags:
        - feedback
      summary: Process feedback
      description: >-
        Mark a feedback as processed, optionally attaching it to one or more
        cards. Attaching highlights the entire feedback and creates an insight
        linked to the given cards — the same linking that happens when feedback
        is created with cardIds.
      parameters:
        - description: The unique identifier for the feedback
          in: path
          name: feedbackId
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProcessFeedbackRequest'
        required: false
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessFeedbackResponse'
          description: Feedback processed successfully
        '400':
          description: Bad request
          content:
            application/json:
              example:
                message: Bad request
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                message: Unauthorized
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              example:
                message: Forbidden
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                message: Internal server error
              schema:
                $ref: '#/components/schemas/MessageResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ProcessFeedbackRequest:
      additionalProperties: false
      properties:
        cardIds:
          description: >-
            Optional array of card IDs to attach the feedback to. Attaching
            highlights the entire feedback and creates an insight linked to
            these cards.
          items:
            type: string
          type: array
      type: object
    ProcessFeedbackResponse:
      additionalProperties: false
      properties:
        id:
          description: The unique identifier of the feedback.
          type: string
        processed:
          description: Whether the feedback is now processed (true on success).
          type: boolean
        attachedCardIds:
          description: >-
            The card IDs the feedback was attached to (empty if none were
            provided).
          items:
            type: string
          type: array
        message:
          description: Human-readable success message.
          type: string
      required:
        - id
        - processed
        - attachedCardIds
        - message
      type: object
    MessageResponse:
      additionalProperties: false
      properties:
        message:
          example: System provided message
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````