> ## 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 predefined options by chain

> Retrieves predefined feedback options and ratings for a specific chain.

This endpoint returns all configured predefined options that are available for the specified
chain, including their associated ratings. Used to present consistent feedback options to customers.



## OpenAPI

````yaml openapi/customerfeedback-v1.json GET /v1/Feedback/options/{chainId}
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/options/{chainId}:
    get:
      tags:
        - Feedback
      summary: Get predefined options by chain
      description: >-
        Retrieves predefined feedback options and ratings for a specific chain.


        This endpoint returns all configured predefined options that are
        available for the specified

        chain, including their associated ratings. Used to present consistent
        feedback options to customers.
      parameters:
        - name: chainId
          in: path
          description: The chain unique identifier to retrieve predefined options for
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetPredefinedOptionsRatingsResponse
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetPredefinedOptionsRatingsResponse
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/CustomerFeedback.Api.DTO.Responses.GetPredefinedOptionsRatingsResponse
components:
  schemas:
    CustomerFeedback.Api.DTO.Responses.GetPredefinedOptionsRatingsResponse:
      type: object
      properties:
        options:
          type: array
          items:
            $ref: >-
              #/components/schemas/CustomerFeedback.ApplicationService.CQRS.Models.PredefinedOptionRating
          description: Collection of predefined option ratings
          nullable: true
      additionalProperties: false
    CustomerFeedback.ApplicationService.CQRS.Models.PredefinedOptionRating:
      type: object
      properties:
        rating:
          type: integer
          format: int32
        option:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````