Support request form template
Take a support ticket with the version, the environment, and a screenshot already attached.
10 fields. Free to start. No card, and nothing to install.
Who uses it
Software support teams, managed service providers, and hardware vendors. It fits any product where the first reply is usually a request for information the customer could have sent at the start.
The problem it solves
A ticket arrives saying it is broken, and the first three replies are spent establishing which version, which browser, and what the customer actually did. The clock on the response target has been running the whole time.
How this handles it
The questions an engineer always asks are on the form, so the first reply can be an answer rather than an interrogation. The screenshot field accepts several images, which covers the console, the error, and the screen before it. Each ticket arrives by email and by webhook at once, so a helpdesk system and a human see it in the same second.
The problem
Your environment
Evidence
The error itself, and the screen just before it. Attach a log if you have one.
Contact
For agents
What an agent does with this form
A support agent embedded in the product fills the version, the platform, and the browser from what it already knows, and asks the customer only for the steps and the screenshot. The ticket lands complete, so the first human reply is a diagnosis.
The template is published as JSON at
/templates/support-request.json.
Read it to learn every field id, then post values keyed by those ids.
A field id is stable. A label is not.
{
"values": {
"sr_subject": "A short factual answer.",
"sr_impact": "cannot_work_at_all",
"sr_steps": "A short factual answer.",
"sr_product": "Found under Help, then About",
"sr_platform": "windows"
},
"idempotency_key": "support-request-2026-09-09-001",
"agent": {
"name": "your-agent"
}
}
Authorization: Bearer ifk_submit_…. Or connect over MCP at /mcp.Questions about support request forms
Can log files be attached?
Yes, if the accepted types list them, as this template does. Each file is capped at three megabytes, so ask for the relevant excerpt rather than an entire day of logging.
How does this fit an existing helpdesk?
Point a webhook at the helpdesk and every submission becomes a ticket there, with the fields already separated. The form is the intake surface and your helpdesk stays the system of record.
Should the impact question be free text?
No, because a fixed list is what makes a queue sortable. Four honest options cover nearly every ticket, and the detail that does not fit belongs in the reproduction steps.
Does the customer see a ticket number?
They see the submission reference on the confirmation page. If your helpdesk mints its own number, send that from the webhook handler so the customer holds the identifier your team will search on.
Create this form in your own workspace.
The template loads as a draft. Change every field, or send it as it stands.
Create this form