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
Endpoints
List statuses
Returns a list of statuses
API key in Authorization header with Bearer prefix (recommended)
Limits the number of items on a page
20The after cursor - used for pagination
Successfully returned a list of statuses
Invalid request
GET /v1/statuses HTTP/1.1
Host: api.frill.co
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"idx": "status_abcd1234",
"name": "Completed",
"color": "#ff00ff",
"created_at": "text",
"updated_at": "text"
}
],
"pagination": {
"total": 10,
"before": "before-cursor",
"after": "after-cursor"
}
}Create a status
Create a new status
API key in Authorization header with Bearer prefix (recommended)
Successfully created a new status
A unique identifier for the status
status_abcd1234Name of the status
CompletedColor associated with the status (displayed in the App)
#ff00ffThe date & time the Status was last updated (UTC timezone)
The date & time the Status was last updated (UTC timezone)
Invalid request
POST /v1/statuses HTTP/1.1
Host: api.frill.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"idx": "status_abcd1234",
"name": "Completed",
"color": "#ff00ff",
"created_at": "text",
"updated_at": "text"
}Update a status
Update a Status
API key in Authorization header with Bearer prefix (recommended)
Successfully updated a status
A unique identifier for the status
status_abcd1234Name of the status
CompletedColor associated with the status (displayed in the App)
#ff00ffThe date & time the Status was last updated (UTC timezone)
The date & time the Status was last updated (UTC timezone)
Invalid request
POST /v1/statuses/{statusIdx} HTTP/1.1
Host: api.frill.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"idx": "status_abcd1234",
"name": "Completed",
"color": "#ff00ff",
"created_at": "text",
"updated_at": "text"
}Delete a status
Delete a Status
API key in Authorization header with Bearer prefix (recommended)
Request was successful
Request was successfulInvalid request
DELETE /v1/statuses/{statusIdx} HTTP/1.1
Host: api.frill.co
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"message": "Request was successful"
}Last updated