Project phases represent the stages within a project board. Each phase belongs to a board and defines a step in the project workflow.
Returns all active project phases under a specific board.
10
/api/v2/phases
board_id
integer
required
The ID of the board for which phases are requested
OK
Returns the details of a specific project phase.
10
/api/v2/phases/{id}
id
integer
required
The ID of the project phase
OK
Adds a new project phase to a board.
5
/api/v2/phases
application/json
name
string
required
The name of the project phase
board_id
integer
required
The ID of the project board to add the phase to
order_nr
integer
The order of the phase within its board. Must be between 1 and the total number of phases on the board + 1.
OK
Updates the properties of a project phase.
5
/api/v2/phases/{id}
id
integer
required
The ID of the project phase
application/json
name
string
The name of the project phase
board_id
integer
The ID of the project board to add the phase to
order_nr
integer
The order of the phase within its board. Must be between 1 and the total number of phases on the board + 1.
OK
Marks a project phase as deleted.
3
/api/v2/phases/{id}
id
integer
required
The ID of the project phase
OK