cURL
curl --request POST \ --url https://api.honeycomb.io/1/boards/{boardId}/views \ --header 'Content-Type: application/json' \ --data ' { "name": "Errors View", "filters": [ { "column": "status", "operation": "=", "value": "error" } ] } '
{ "id": "eC_abc123", "name": "My View", "filters": [ { "column": "status", "operation": "=", "value": "error" } ] }
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.
The unique identifier (ID) of a Board.
The name of the view.
1 - 255
"My View"
The filters to apply to this view.
1
Show child attributes
Created
Unique identifier for the board view.
"eC_abc123"