Hello experts,
I know it is a basic question but could I have help from you please?
I am trying to create an item via API.
It works if I copy the sample GraphQL code from the guide exactly (changed the board_id and group_id), but it doesn’t work if I change the column_values.
What is missing my code? Thank you so much in advance.
for example, it works:
mutation { create_item (board_id: xxx, group_id: "xxx", item_name: "new item", column_values: "{\"date\":\"2023-05-25\"}") { id } }
it does not work:
mutation { create_item (board_id: 7772434243, group_id: "new_group29179", item_name: "new item", column_values: "{\"text8__1\":\"システム\"}") { id } }
it also does not:
mutation { create_item (board_id: xxx, group_id: "xxx", item_name: "new item", column_values: "text8__1":"システム") { id } }
*column ‘text8__1’ is a custom column. I made sure the same issue with other default values.
I tried it on an API integration service (IBM’s tool that can offer the custom API process generation) and it responded nothing when it did not work, so I will check the result with other environment.
What is a “custom column” in this case? How did you create that column?
I created it by clicking a + button on column header.