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

# Create product feedback for a business

> Creates product feedback for the current business, capturing category, message, and context for operator review.



## OpenAPI

````yaml /openapi.json post /feedback
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /feedback:
    post:
      tags:
        - Feedback
      summary: Create product feedback for a business
      description: >-
        Creates product feedback for the current business, capturing category,
        message, and context for operator review.
      operationId: Feedback_Create
      requestBody:
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/FeedbackCreateRequest'
              description: >-
                Request schema for the Leadping API feedback creation request,
                including the fields clients can send.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/FeedbackCreateRequest'
              description: >-
                Request schema for the Leadping API feedback creation request,
                including the fields clients can send.
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/FeedbackResponse'
                description: >-
                  Response schema for the Leadping API feedback item response
                  returned to authenticated clients.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    FeedbackCreateRequest:
      type: object
      properties:
        type:
          enum:
            - bug
            - confusing
            - feature_request
            - missing_capability
            - other
          type: string
          description: Defines the type of product feedback submitted from inside Leadping.
          nullable: true
        message:
          type: string
          description: >-
            Message text supplied by the user or returned by the Leadping API
            for this feedback creation request.
          nullable: true
        route:
          type: string
          description: >-
            Application route where this feedback creation request originated or
            should direct the user.
          nullable: true
        area:
          type: string
          description: >-
            Product area or app section connected to this feedback creation
            request.
          nullable: true
        allowContact:
          type: boolean
          description: >-
            Indicates whether the submitter permits Leadping support to contact
            them about the feedback.
        clientVersion:
          type: string
          description: >-
            Client application version that submitted this feedback creation
            request.
          nullable: true
      description: >-
        Request schema for the Leadping API feedback creation request, including
        the fields clients can send.
    FeedbackResponse:
      type: object
      properties:
        id:
          type: string
          description: Unique Leadping identifier for this feedback item response.
        businessId:
          type: string
          description: >-
            Business ID connected to the feedback item, when the feedback came
            from a business workspace.
          nullable: true
        userId:
          type: string
          description: User ID for the person who submitted the feedback.
          nullable: true
        type:
          allOf:
            - $ref: '#/components/schemas/FeedbackType'
          description: >-
            Type classification used to route and interpret this feedback item
            response in the Leadping API.
        status:
          allOf:
            - $ref: '#/components/schemas/FeedbackStatus'
          description: >-
            Current lifecycle status for this feedback item response in the
            Leadping API.
        area:
          type: string
          description: >-
            Product area or app section connected to this feedback item
            response.
          nullable: true
        route:
          type: string
          description: >-
            Application route where this feedback item response originated or
            should direct the user.
          nullable: true
        message:
          type: string
          description: >-
            Message text supplied by the user or returned by the Leadping API
            for this feedback item response.
        allowContact:
          type: boolean
          description: >-
            Indicates whether the submitter permits Leadping support to contact
            them about the feedback.
        clientVersion:
          type: string
          description: >-
            Client application version that submitted this feedback item
            response.
          nullable: true
        createdAt:
          type: string
          description: UTC timestamp when this feedback item response was created.
          format: date-time
      description: >-
        Response schema for the Leadping API feedback item response returned to
        authenticated clients.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
          nullable: true
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true
    FeedbackType:
      enum:
        - bug
        - confusing
        - feature_request
        - missing_capability
        - other
      type: string
      description: Defines the type of product feedback submitted from inside Leadping.
    FeedbackStatus:
      enum:
        - new
        - reviewed
        - planned
        - in_progress
        - shipped
        - closed
        - ignored
      type: string
      description: Defines admin triage statuses for durable product feedback.

````