Skip to content

Board discard reasons

BoardDiscardReasons

Bases: GenericRequestMethod

Class responsible to make calls to Kanbanize board discard reasons endpoints

Source code in kanbanize_sdk/endpoints/board_discard_reasons.py
 4
 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
class BoardDiscardReasons(GenericRequestMethod):
    """
    Class responsible to make calls to Kanbanize board discard reasons endpoints
    """

    endpoint = '/boards'

    def list(self, board_id: int, *args, **kwargs) -> list:
        """
        This method is responsible to list all board discard reasons from the board into the platform.

        Parameters:
            board_id: An integer parameter that represents the board assignee

        Returns:
            An array of objects that represents the board discard reasons

        """
        return self.service.get(self.endpoint + f'/{board_id}/discardReasons')

    def get(self, board_id: int, reason_id: int, *args, **kwargs) -> None:
        """
        This method is responsible to get a board discard reason from the board into the platform.

        Parameters:
            board_id: An integer parameter that represents the board identification.
            reason_id: An integer parameter that represents the reason identification.

        Returns:
            A board discard reason object with the basic information data.
        """
        return self.service.get(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')

    def update(self, board_id: int, reason_id: int, *args, **kwargs) -> None:

        """
        This method is responsible to get a board discard reason from the board into the platform.

        Parameters:
            board_id: An integer parameter that represents the board identification.
            reason_id: An integer parameter that represents the reason identification.
        """
        return self.service.put(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')

    def delete(self, board_id: int, reason_id: int, *args, **kwargs) -> None:

        """
        This method is responsible to get a board discard reason from the board into the platform.

        Parameters:
            board_id: An integer parameter that represents the board identification.
            reason_id: An integer parameter that represents the reason identification.
        """
        return self.service.delete(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')

delete(board_id, reason_id, *args, **kwargs)

This method is responsible to get a board discard reason from the board into the platform.

Parameters:

Name Type Description Default
board_id int

An integer parameter that represents the board identification.

required
reason_id int

An integer parameter that represents the reason identification.

required
Source code in kanbanize_sdk/endpoints/board_discard_reasons.py
48
49
50
51
52
53
54
55
56
57
def delete(self, board_id: int, reason_id: int, *args, **kwargs) -> None:

    """
    This method is responsible to get a board discard reason from the board into the platform.

    Parameters:
        board_id: An integer parameter that represents the board identification.
        reason_id: An integer parameter that represents the reason identification.
    """
    return self.service.delete(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')

get(board_id, reason_id, *args, **kwargs)

This method is responsible to get a board discard reason from the board into the platform.

Parameters:

Name Type Description Default
board_id int

An integer parameter that represents the board identification.

required
reason_id int

An integer parameter that represents the reason identification.

required

Returns:

Type Description
None

A board discard reason object with the basic information data.

Source code in kanbanize_sdk/endpoints/board_discard_reasons.py
24
25
26
27
28
29
30
31
32
33
34
35
def get(self, board_id: int, reason_id: int, *args, **kwargs) -> None:
    """
    This method is responsible to get a board discard reason from the board into the platform.

    Parameters:
        board_id: An integer parameter that represents the board identification.
        reason_id: An integer parameter that represents the reason identification.

    Returns:
        A board discard reason object with the basic information data.
    """
    return self.service.get(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')

list(board_id, *args, **kwargs)

This method is responsible to list all board discard reasons from the board into the platform.

Parameters:

Name Type Description Default
board_id int

An integer parameter that represents the board assignee

required

Returns:

Type Description
list

An array of objects that represents the board discard reasons

Source code in kanbanize_sdk/endpoints/board_discard_reasons.py
11
12
13
14
15
16
17
18
19
20
21
22
def list(self, board_id: int, *args, **kwargs) -> list:
    """
    This method is responsible to list all board discard reasons from the board into the platform.

    Parameters:
        board_id: An integer parameter that represents the board assignee

    Returns:
        An array of objects that represents the board discard reasons

    """
    return self.service.get(self.endpoint + f'/{board_id}/discardReasons')

update(board_id, reason_id, *args, **kwargs)

This method is responsible to get a board discard reason from the board into the platform.

Parameters:

Name Type Description Default
board_id int

An integer parameter that represents the board identification.

required
reason_id int

An integer parameter that represents the reason identification.

required
Source code in kanbanize_sdk/endpoints/board_discard_reasons.py
37
38
39
40
41
42
43
44
45
46
def update(self, board_id: int, reason_id: int, *args, **kwargs) -> None:

    """
    This method is responsible to get a board discard reason from the board into the platform.

    Parameters:
        board_id: An integer parameter that represents the board identification.
        reason_id: An integer parameter that represents the reason identification.
    """
    return self.service.put(self.endpoint + f'/{board_id}/discardReasons/{reason_id}')