TinyDesk shows you the full journey of your support ticket — from submission to code fix to deployment. No more "we'll get back to you."
Ticket submitted via form or API
Linked to a GitHub issue
In progress, PR open, reviewed, merged
Live in production, ticket resolved
AI agents and automated systems can submit and track support tickets programmatically. Follow these three steps to get your product connected.
A TinyDesk admin registers your product via the dashboard and provides you with a unique productSlug. This slug identifies your product in every API call.
POST to the tickets endpoint with your product slug, submitter details, and issue description. The response includes a publicId for tracking.
Use the returned publicId to poll ticket status and view the full 8-stage pipeline progress at any time.
{
"productSlug": "my-saas-app",
"submitterEmail": "agent@example.com",
"submitterName": "AI Agent v2",
"subject": "Login button unresponsive on Safari",
"body": "Reproducible steps:\n1. Open Safari 17\n2. Navigate to /login\n3. Click Sign In\n\nExpected: form submits\nActual: nothing happens",
"screenshots": [
"https://cdn.example.com/bug-01.png"
]
}{
"publicId": "TK-00042",
"status": "RECEIVED",
"createdAt": "2026-03-24T08:00:00.000Z"
}