Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/group_boards.md')
-rw-r--r--doc/api/group_boards.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/group_boards.md b/doc/api/group_boards.md
index 267b9feb750..5a7b67b562c 100644
--- a/doc/api/group_boards.md
+++ b/doc/api/group_boards.md
@@ -296,10 +296,10 @@ PUT /groups/:id/boards/:board_id
| `name` | string | no | The new name of the board |
| `hide_backlog_list` | boolean | no | Hide the Open list |
| `hide_closed_list` | boolean | no | Hide the Closed list |
-| `assignee_id` **(PREMIUM)** | integer | no | The assignee the board should be scoped to |
-| `milestone_id` **(PREMIUM)** | integer | no | The milestone the board should be scoped to |
-| `labels` **(PREMIUM)** | string | no | Comma-separated list of label names which the board should be scoped to |
-| `weight` **(PREMIUM)** | integer | no | The weight range from 0 to 9, to which the board should be scoped to |
+| `assignee_id` **(PREMIUM ALL)** | integer | no | The assignee the board should be scoped to |
+| `milestone_id` **(PREMIUM ALL)** | integer | no | The milestone the board should be scoped to |
+| `labels` **(PREMIUM ALL)** | string | no | Comma-separated list of label names which the board should be scoped to |
+| `weight` **(PREMIUM ALL)** | integer | no | The weight range from 0 to 9, to which the board should be scoped to |
```shell
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/5/boards/1?name=new_name&milestone_id=44&assignee_id=1&labels=GroupLabel&weight=4"