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

# Get feedback state

> Retrieves the current state of a feedback entry by receipt unique identifier.

This endpoint returns only the state information (e.g., draft, submitted, completed) for
the feedback associated with the specified receipt. Useful for checking feedback status
without retrieving full feedback details.



## OpenAPI

````yaml openapi/customerfeedback-v1.json GET /v1/Feedback/state
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/state:
    get:
      tags:
        - Feedback
      summary: Get feedback state
      description: >-
        Retrieves the current state of a feedback entry by receipt unique
        identifier.


        This endpoint returns only the state information (e.g., draft,
        submitted, completed) for

        the feedback associated with the specified receipt. Useful for checking
        feedback status

        without retrieving full feedback details.
      parameters:
        - name: receiptId
          in: query
          description: The receipt unique identifier to check feedback state for
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetFeedbackStateResponse
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetFeedbackStateResponse
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetFeedbackStateResponse
components:
  schemas:
    CustomerFeedback.Api.DTO.Responses.GetFeedbackStateResponse:
      type: object
      properties:
        feedbackState:
          $ref: >-
            #/components/schemas/CustomerFeedback.ApplicationService.CQRS.Models.FeedbackState
      additionalProperties: false
    CustomerFeedback.ApplicationService.CQRS.Models.FeedbackState:
      enum:
        - None
        - Open
        - Closed
      type: string
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````