Board settings
BoardSettings
Bases: Boards
Class responsible to make calls to Kanbanize board settings endpoints
Source code in kanbanize_sdk/endpoints/board_settings.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
get(board_id)
This method is responsible to get one board settings from the platform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
board_id |
int
|
An integer parameter that represents the board identification. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
A searched board object |
Source code in kanbanize_sdk/endpoints/board_settings.py
17 18 19 20 21 22 23 24 25 26 27 | |
update(board_id, body)
This method is responsible to update one board settings in the platform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
board_id |
int
|
An integer parameter that represents the board identification. |
required |
body |
BoardSettingsUpdateBody | dict
|
It's a dataclass object that represent the body option to be updated. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
The updated board object |
Source code in kanbanize_sdk/endpoints/board_settings.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |