fdback.iofdback.io

List statuses

Retrieve all available statuses (roadmap columns) for the workspace.

GET
/statuses

Authorization

bearerAuth
AuthorizationBearer <token>

API key with sk_live_ or sk_test_ prefix. Create keys in your workspace settings.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://app.fdback.io/api/v1/statuses"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "color": "string",
      "order": 0
    }
  ]
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key.",
    "status": 401
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Too many requests. Please try again later.",
    "status": 429
  }
}