I’m trying to create a new item in a board , and am passing a JSON object containing the column_values for several columns. I’m having luck with certain text columns. But others, The API returns the following error
{
"error_code": "InvalidColumnIdException",
"status_code": 400,
"error_message": "This column ID doesn't exist for the board",
"error_data": {
"column_id": "email"
}
I am getting the error even though the column ID does indeed exist in the board.
{
"id": "email",
"text": "email@email.com",
"title": "Email",
"value": "{\"email\":\"email@email.com\",\"text\":\"email@email.com\",\"changed_at\":\"2020-01-24T04:36:25.922Z\"}"
},
Any Insight?
These are the variables that I am passing to the mutation. I can get this to work for the simple text field or a group of two text fields , but get the above error when passing the email column id.
{"name" : "NewCo Insomnia", "group" : "groupID", "JSON": "{\"text7\": \"ready 7\" , \"email\" : \"email@email.com\"} "}
Also, Is there a way to edit the ID values , or set them when the column is created ?
Thanks,
Javier