Breeze

Learn how to use Breeze with Composio

Overview

Enum

BREEZE

Description

Breeze is a project management software that helps teams plan, track, and collaborate on projects efficiently.

Authentication Details

api_key
stringRequired

Actions

Tool to add people to a project. use when you have a valid project id and one or more email addresses to invite them.

Action Parameters

invitees
arrayRequired
project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to archive a specific project. use when you need to hide a completed or inactive project from active views after confirming its details.

Action Parameters

project_id
integerRequired
team_id
integer

Action Response

data
object
error
string
successful
boolean
Tool to create a new card in a project. use after confirming the project id. creates a task with details like name, due date, and assignees.

Action Parameters

custom_fields
array
description
string
duedate
invitees
array
name
stringRequired
planned_time
integer
project_id
integerRequired
stage_id
integer
startdate
swimlane_id
integer
tags
array

Action Response

data
object
error
string
successful
boolean
Tool to create a new list (stage) in a breeze project. use when you've selected a project and need to add a new stage. example: "create a new todo list for project 42."

Action Parameters

name
stringRequired
project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to create a new project in breeze. use when you have the project name and want to initialize it via the api.

Action Parameters

name
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to create a new workspace. use after deciding on the workspace name.

Action Parameters

name
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a specific card (task) by its id. use when you need to remove a task permanently; deletions cannot be undone.

Action Parameters

card_id
integerRequired
project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a specific project by id. use when you need to remove a project after confirming its id.

Action Parameters

project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a person from a project by user id. use after confirming the project and user details. example: "delete user 456 from project 123".

Action Parameters

project_id
integerRequired
user_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a specific workspace by id. use when permanently removing a workspace after confirming the correct workspace id.

Action Parameters

workspace_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve detailed info for a specific card (task) in a project. use when you know the project id and card id and need all metadata like tags, users, todos, and time entries.

Action Parameters

card_id
integerRequired
project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to get all cards (tasks) for a specific project. use after confirming the project exists. example: "list all cards in project 42."

Action Parameters

archived
boolean
project_id
integerRequired

Action Response

data
array
error
string
successful
boolean
Tool to get a specific project by id. use when you need detailed project information after confirming the project id. example: "get project 123 details".

Action Parameters

project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to get all active projects. use when you need an overview of your team's current projects after confirming authentication.

Action Parameters

team_id
integer

Action Response

data
array
error
string
successful
boolean
Tool to get all users in a project. use when you have a valid project id and need to list its users.

Action Parameters

project_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to get a specific workspace by id. use when you need workspace details including projects after confirming the workspace id.

Action Parameters

workspace_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to get all workspaces. use when you need to list available workspaces for the authenticated user.

Action Parameters

Action Response

data
array
error
string
successful
boolean
Tool to move a card to a different stage or position. use after confirming stage id and prev id.

Action Parameters

card_id
integerRequired
prev_id
integer
project_id
integerRequired
stage_id
integerRequired

Action Response

data
object
error
string
successful
boolean