Statuses

Statuses reflect the current stage of an Idea or feature request for your product as it progresses from suggestion, through development, to completion.

Status object

Status have the following fields

Field
Details

idx string

A unique identifier for the idea

name string

Name of the status

color string

Color associated with the status (displayed in the App)

Endpoints

You can use the following endpoints to manage Statuses

List statuses

get

Returns a list of statuses

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Query parameters
limitintegerOptional

Limits the number of items on a page

Default: 20
afterstringOptional

The after cursor - used for pagination

Responses
200

Successfully returned a list of statuses

application/json
get
/statuses

Create a status

post

Create a new status

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Body
namestringOptional
Responses
200

Successfully created a new status

application/json
post
/statuses

Update a status

post

Update a Status

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Path parameters
statusIdxstringRequired
Body
namestringOptional
Responses
200

Successfully updated a status

application/json
post
/statuses/{statusIdx}

Delete a status

delete

Delete a Status

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Path parameters
statusIdxstringRequired
Responses
200

Request was successful

application/json
delete
/statuses/{statusIdx}

Last updated