Skip to content
Feedi

Docs

Feedi docs

Install the headless SDK, submit feedback, and wire signed webhook automation without extra platform surface.

Platform

Set up the SDK

Submit feedback

Submit feedback from your own UI. The SDK sends the request to POST /v1/feedback and returns a receipt.

Swift
// submitFeedback is async and throws — call it from a Task or any async
// context; failures are thrown as FeediError.
let receipt = try await Feedi.submitFeedback(
    message: "The settings screen is confusing.",
    userEmail: "user@example.com",
    customMetadata: [
        "screen": "settings"
    ]
)