Skip to main content
GET
/
v1
/
feature-requests
List all feature requests for the tenant
curl --request GET \
  --url https://api.example.com/v1/feature-requests \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
id
string
required
title
string
required
description
string
required
status
enum<string>
required
Available options:
open,
planned,
shipped
createdAt
string<date-time>
required