Guide
Unity SDK Getting Started
Formsig Unity SDK lets players send feedback, bug reports, and support from inside your game. Submissions use the same hosted endpoints as website forms — no game backend required. Product page: https://formsig.com/unity
Official site formsig.com: features, pricing, docs, playground, llms.txt.
Install the package
In Unity, install FormSig SDK from the Asset Store: https://assetstore.unity.com/packages/package/4017841 — then open Package Manager and confirm FormSig SDK appears under Packages.
Requires Unity 2022.3 LTS or newer. Docs and samples ship inside the package (Documentation~/ and Package Manager → Samples).
Create forms with Games kit
Sign in at https://formsig.com → Forms → + Create New Form → choose Games kit (all 3). That creates Player Feedback, Bug Reports, and Support with field labels that match the SDK (Bug Reports includes a Screenshot file field).
Free plans allow a limited number of forms; Games kit uses three slots. You can also create a single template form if you prefer.
Copy each Form ID (lowercase slug from the dashboard).
Wire FormSig Setup
In Unity: Window → FormSig → Setup. Set Base URL to https://formsig.com.
Add three rows whose Names match exactly: Player Feedback, Bug Reports, Support. Paste the matching Form ID into each row. Save the FormsigSettings asset.
Names must match what your code or Support Kit sample uses. Field labels on Formsig must match keys the SDK sends (for example Message, Screenshot).
Configure and submit
At startup call FormsigClient.Configure(settings), or import a sample that auto-finds your FormsigSettings asset.
Use SubmitFeedbackAsync, ReportBugAsync, ContactSupportAsync, or SubmitAsync with custom fields. Optional: enable IncludeScreenshot on bug reports.
Check submissions in the Formsig dashboard inbox. Optional: attach a Discord or Slack webhook on Starter+ plans.
Frequently asked questions
Do I need a backend for my game?
No. The SDK posts over HTTPS to your public Formsig form URL. Form IDs are public identifiers, not API secrets.
Why does Setup say unknown form?
The name string in code must match a FormsigSettings Forms row Name exactly (no trailing spaces).
Where is the full API reference?
Inside the package under Documentation~/API.md after you install from the Asset Store. Overview: https://formsig.com/unity
Can I install via Git URL?
Not from a public GitHub URL yet. Use the Asset Store listing. Teams that need a private Git URL for CI can contact Formsig support.
Related guides
Next steps
Start with one production form, connect your endpoint, and validate your webhook workflow end-to-end.
- Create your endpoint URL on formsig.com and submit once from your real page.
- Set webhook + anti-spam controls before scaling traffic.
- Use playground demos for quick team handoff and QA.