deprecated
Deprecating `settings_str` field on `columns`
September 23rd, 2025
🏷️ API version:
2025-10
The settings_str
field on columns
queries is now deprecated. You can use the new settings
field to return the column's settings as a JSON object.
query {
boards (ids: 1234567890) {
columns {
settings
}
}
}
{
"data": {
"boards": [
{
"columns": [
{
"settings": {}
},
{
"settings": {}
},
{
"settings": {
"labels": [
{
"id": 0,
"color": 0,
"label": "Working on it",
"index": 0,
"is_done": false,
"is_deactivated": false
},
{
"id": 1,
"color": 1,
"label": "Done",
"index": 2,
"is_done": false,
"is_deactivated": false
},
{
"id": 2,
"color": 2,
"label": "Stuck",
"index": 1,
"is_done": false,
"is_deactivated": false
}
]
}
},
{
"settings": {}
},
{
"settings": {}
},
{
"settings": {
"hide_footer": false
}
},
{
"settings": {}
}
]
}
]
},
"extensions": {
"request_id": "YOUR_REQUEST_ID"
}
}