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

# Complete feedback

> Marks a feedback entry as complete based on the receipt unique identifier.

This endpoint transitions the feedback state to completed, typically used when a feedback
workflow has been finalized. Only the receiptId is required to identify the feedback to complete.



## OpenAPI

````yaml openapi/customerfeedback-v1.json PATCH /v1/Feedback/complete
openapi: 3.0.4
info:
  title: CustomerFeedback.Api
  version: v1
servers:
  - url: https://{host}/customerfeedback
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/Feedback/complete:
    patch:
      tags:
        - Feedback
      summary: Complete feedback
      description: >-
        Marks a feedback entry as complete based on the receipt unique
        identifier.


        This endpoint transitions the feedback state to completed, typically
        used when a feedback

        workflow has been finalized. Only the receiptId is required to identify
        the feedback to complete.
      parameters:
        - name: receiptId
          in: query
          description: >-
            The receipt unique identifier associated with the feedback to
            complete
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.CompleteFeedbackResponse
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.CompleteFeedbackResponse
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.CompleteFeedbackResponse
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
components:
  schemas:
    CustomerFeedback.Api.DTO.Responses.CompleteFeedbackResponse:
      type: object
      properties:
        id:
          type: integer
          description: The unique identifier of the completed feedback.
          format: int64
        thankYouMessage:
          type: string
          description: The thank you message to display to the customer.
          nullable: true
      additionalProperties: false
      description: Response returned after completing a customer feedback submission.
    Microsoft.AspNetCore.Mvc.ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````