Hello,
I have scoured posts about the subject yet cannot find a suitable answer.
I am trying to create items using the API in C# with already populated columns.
I can, using the following query, make items with no information other than the title :
"{\"query\":\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX){ id} }\"}"
However, adding column_values returns the Internal Server Error, even if it is empty.
I have tried the following methods, just to show a few (None of them have worked of course) :
"{\"query\":\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: \"{}\"){ id} }\"}"
"{\"query\":\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: \"{\"text\":\"151\",\"numbers\":\"1\"}\"){ id} }\"}"
{\"query\":\"mutation{ create_item(board_id: XXXXXXXXXX, group_id: XXXXX, item_name: XXXX, column_values: "{\"status\": {\"label\":\"Sign-Up\"}}"){ id} }\"}
Sorry if the formatting is hard to read.
I also tried with variables. All attempts so far have failed.
Thank you in advance.