added

New create a doc column mutation

In API versions 2024-04 and later, you can create a doc column using the create_column mutation.

mutation { create_column (board_id: 1234567890, column_type: doc, title: "Task info") { id } }
let query = 'mutation { create_column (board_id: 1234567890, column_type: doc, title: "Task info") { id }}'; fetch ("https://api.monday.com/v2", { method: 'post', headers: { 'Content-Type': 'application/json', 'Authorization' : 'YOUR_API_KEY_HERE' }, body: JSON.stringify({ 'query' : query }) }) .then(res => res.json()) .then(res => console.log(JSON.stringify(res, null, 2)));