Skip to main content
POST
/
v1
/
feature-requests
Submit a new feature request for the tenant
curl --request POST \
  --url https://api.example.com/v1/feature-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "MCP OAuth gateway",
  "description": "Connect Slack through Wardin auth"
}
'
{
  "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.

Body

application/json
title
string
required
Example:

"MCP OAuth gateway"

description
string
Example:

"Connect Slack through Wardin auth"

Response

201 - 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