In the API Playground I can change a text column value for an item using:
mutation{change_simple_column_value (board_id: XXXXXXXXXX, item_id: YYYYYYYYYY, column_id: "text", value: "NEW" ){id}}
But when I replace the item_id with the id of a subitem I get:
{
"error_code": "ResourceNotFoundException",
"status_code": 404,
"error_message": "Item not found in board",
"error_data": {
"resource_type": "item",
...
"error_reason": null
}
}
I can’t find any reference to changing subitem values in the documentation, only (parent) item values. Do I need to pass a parent_id as well or…?
