Board structure revisions
BoardStructureRevisions
Bases: Boards
Class responsible to make calls to Kanbanize board structure revisions endpoints
Source code in kanbanize_sdk/endpoints/board_structure_revisions.py
5 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 | |
get(board_id)
This method is responsible to get one board 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_structure_revisions.py
18 19 20 21 22 23 24 25 26 27 28 | |
get_revision(board_id, revision)
This method is responsible to get one board from the platform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
board_id |
int
|
An integer parameter that represents the board identification. |
required |
revision |
int
|
An integer parameter that represents the revision identification. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
A searched board object |
Source code in kanbanize_sdk/endpoints/board_structure_revisions.py
30 31 32 33 34 35 36 37 38 39 40 41 | |