Feature Requests
Feature request object
Section titled “Feature request object”| Field | Type | Description |
|---|---|---|
id | string | UUID |
account_id | string | UUID |
app_id | string | UUID of the app |
title | string | Request title |
description | string | Request description |
status | string | opened, in_progress, testing, complete, archived |
priority | string? | low, medium, high, critical |
assigned_to | string? | UUID of assigned user |
submitter_id | string? | External user ID from your system |
submitter_email | string? | Submitter’s email |
submitter_name | string? | Submitter’s name |
submitter_context | object | Auto-captured context (domain, UA, IP, etc.) |
attachments | array? | File attachments |
created_at | string | ISO 8601 timestamp |
updated_at | string | ISO 8601 timestamp |
requests-list
Section titled “requests-list”List feature requests with optional filters.
{ "app_id": "optional-app-uuid", "status": "opened", "priority": "high", "search": "search term", "cursor": "optional-cursor", "limit": 25}Response includes requests, next_cursor, has_more, and total_count.
requests-get
Section titled “requests-get”{"id": "request-uuid"}requests-update-status
Section titled “requests-update-status”{"id": "request-uuid", "status": "in_progress"}Valid statuses: opened, in_progress, testing, complete, archived.
requests-assign
Section titled “requests-assign”{"id": "request-uuid", "assigned_to": "user-uuid"}Pass null for assigned_to to unassign.
requests-set-priority
Section titled “requests-set-priority”{"id": "request-uuid", "priority": "high"}Valid priorities: low, medium, high, critical.
requests-archive
Section titled “requests-archive”{"id": "request-uuid"}requests-delete
Section titled “requests-delete”{"id": "request-uuid"}