Skip to main content
POST
/
v
/
alpha
/
feedback
/
create
Create feedback
curl --request POST \
  --url https://api.operate.so/v/alpha/feedback/create \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "status": "backlog",
  "owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "estimated_completion": "2023-11-07T05:31:56Z",
  "company_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain from your Operate dashboard.

Body

title
string
required

Feedback title

Minimum string length: 1
Example:

"Feature request: Dark mode"

description
string

Feedback description (plain text, will be converted to block editor JSON)

Example:

"It would be great to have a dark mode for the app."

status
enum<string>
Available options:
backlog,
planned,
in_progress,
completed,
not_doing
owner_id
estimated_completion
string<date-time>

Estimated completion date (ISO 8601)

company_ids
string<uuid>[]

IDs of companies associated with this feedback

Company ID

Response

200

Successful response