Boards

Create a Board View

Create a new view for a board with the specified filters. Note: Each board is limited to a maximum of 50 views. Attempting to create more than 50 views will result in an error.

post/1/boards/{boardId}/views

Request body

namestring required

The name of the view.

Example request

{
  "name": "My View",
  "filters": [
    {
      "column": "status",
      "operation": "=",
      "value": "error"
    }
  ]
}

Response

Created

idstring

Unique identifier for the board view.

namestring

The name of the view.

Example response

{
  "id": "eC_abc123",
  "name": "My View",
  "filters": [
    {
      "column": "status",
      "operation": "=",
      "value": "error"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.