[RELEASED] Creating new labels with the API

Hi @RogerLovato,

You will need an item when you add the labels.

You’ll need two operations to achieve this:

Create the status column

mutation{
  create_column(board_id: 12345678, title:"Work Status", description: "This is my work status column", column_type:status) {
    id
    title
    description
  }
}

and then update the column to include the labels

mutation {
  change_multiple_column_values(item_id:11111, board_id:22222, column_values: "{\"status15\" : {\"label\" : \"Done\"}}") {
    id
  }
}