I tried the following and couldn’t create the doc with this response.
`mutation {
create_doc (location: { board: {item_id:1234, column_id: "monday_doc" } } ) {
id
}
}`
{
error_code: 'InvalidColumnIdException',
status_code: 200,
error_message: "This column ID doesn't exist for the board",
error_data: {
column_id: 'monday_doc',
board_id: null,
error_reason: 'store.monday.automation.error.missing_column'
}
}
When I searched item and column with API in the workspaces I am working on, it failed to create a doc with any value.
What are the item_id and column_id needed to create the doc?