Developer Docs / Feedback SDK

GrowthCat Feedback Boards and SDK

Add a WishKit-style board to your app for ideas, bug reports, questions, votes, and roadmap workflow. Feedback SDK docs are available for iOS and Web React, with Android support coming soon.

Overview

Feedback is app-scoped. Each app can have one public board, a private owner inbox, and SDK endpoints for in-app submissions. Items can be ideas, bugs, feedback, or questions.

Enable Feedback

Open an app in GrowthCat, choose Feedback, and enable the board. Free plans include Feedback for one app.

text
/app/owner/apps/{appId}/feedback

iOS SDK Quickstart

Configure the iOS SDK with your app's GrowthCat app ID (a UUID from the dashboard) and present the native feedback experience — a voting board with a compose sheet behind a floating + button — from your current view controller.

swift
import GrowthCatFeedback

GrowthCatFeedback.configure(
    appId: "1d2e3f4a-5b6c-7d8e-9f0a-1b2c3d4e5f6a",
    user: FeedbackUser(
        id: "customer_123",
        email: "jane@example.com",
        name: "Jane"
    )
)

GrowthCatFeedback.shared.presentFeedbackSheet(
    from: viewController,
    preselectedType: .bug,
    metadata: ["screen": "ReportsView"]
)

Only idea items are ever shown on the public board for others to see and vote on — bug, feedback, and question submissions stay private to your dashboard inbox.

Platform Docs

Web React feedback docs are part of the Web React SDK guide. Android SDK docs will be published when that SDK is ready.

Voting

GrowthCat enforces one vote per item per identified user or anonymous device. Repeated vote calls are idempotent and return the current vote count.

Plan Limits

Free includes one feedback-enabled app, unlimited submissions, public board, SDK, and voting. The dashboard shows the 5 oldest open items as a queue while done and rejected items remain visible. Paid plans unlock additional apps and all open requests at once.