Roadmap
featureOS List All Columns
Introduction
The featureOS List All Columns API allows you to retrieve information about your list columns. You can also retrieve list columns' associated data.
GET https://api.featureos.app/api/v3/kanban/columns
Headers
Parameter | Default | Description |
---|---|---|
API-KEY | - | Generate from organization settings on the admin dashboard. |
Sample response
{
"success": true,
"columns": [
{
"id": 1,
"name": "Ideas",
"position": 1
},
{
"id": 2,
"name": "Building",
"position": 2
},
{
"id": 3,
"name": "Live",
"position": 3
}
]
}