A few days ago, I tested the creation of a document (Workdoc) in Monday.com using the Developer Center interface, and it worked without any issues.
However, now the same mutation no longer works, even though the item is active and other mutations—like assigning people—are still working correctly.
This functionality was already integrated in a JavaScript automation that creates documents in doc
columns as part of a process, in order to generate documents and insert automated responses whit mutation { create_doc_block}.
The board ID, item ID, and column ID were all verified and are correct and exist in the account.
I’m sharing the GraphQL snippet I’m using so you can help me test it:
mutation {
create_doc(
location: {
board: {
item_id: XXXXXXXX,
column_id: “doc_XXXXXXX”
}
}
) {
id
}
}
And here’s the response I get when executing it:
{
“data”: {
“create_doc”: null
},
“errors”: [
{
“message”: “Cannot change column value for inactive items”,
“locations”: [
{
“line”: 1,
“column”: 12
}
],
“path”: [
“create_doc”
],
“extensions”: {
“code”: “ColumnValueException”,
“status_code”: 200,
“error_data”: {
“board_id”: XXXXXX,
“inactive_pulse_ids”: [
“XXXXXXXX”
]
},
“service”: “monolith”
}
}
],
“extensions”: {
“request_id”: “d132337c-xx-9363-xx-3ce856xxxxx”
}
}