# Breeze

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

- **Category:** project management
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 18
- **Triggers:** 0
- **Slug:** `BREEZE`
- **Version:** 20260223_00

## Tools

### Add Project People

**Slug:** `BREEZE_ADD_PROJECT_PEOPLE`

Add people to a Breeze project by inviting them via email. This action invites one or more users to a project by their email addresses. The response returns the complete list of all users currently in the project (including the newly added ones). Use this when you need to give users access to a specific project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `invitees` | array | Yes | List of email addresses to invite to the project |
| `project_id` | integer | Yes | ID of the project to which people will be added |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Archive Project

**Slug:** `BREEZE_ARCHIVE_PROJECT`

Tool to archive a specific project. Use when you need to hide a completed or inactive project from active views after confirming its details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `team_id` | integer | No | Team ID to specify the target team when the user belongs to multiple teams. Provide this parameter if your account has multiple teams. |
| `project_id` | integer | Yes | The unique ID of the project to archive |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Card

**Slug:** `BREEZE_CREATE_CARD`

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.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the new card (task) |
| `tags` | array | No | List of tags to associate with the card |
| `duedate` | string | No | Due date in ISO 8601 format (e.g., 2025-02-22T16:00:00Z) |
| `invitees` | array | No | List of email addresses to invite to the card |
| `stage_id` | integer | No | ID of the stage where the card will be placed |
| `startdate` | string | No | Start date in ISO 8601 format (e.g., 2025-02-20T16:00:00Z) |
| `project_id` | integer | Yes | ID of the project where the card will be created |
| `description` | string | No | Optional description of the card |
| `swimlane_id` | integer | No | ID of the swimlane where the card will be placed |
| `planned_time` | integer | No | Planned time in minutes |
| `custom_fields` | array | No | List of custom fields for the card |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### CREATE_LIST

**Slug:** `BREEZE_CREATE_LIST`

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."

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the new list (stage) to create |
| `project_id` | integer | Yes | ID of the Breeze project to add the new list to |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Project

**Slug:** `BREEZE_CREATE_PROJECT`

Creates a new project in Breeze project management system. Use this action to initialize a new project with a given name. The newly created project will: - Be automatically assigned to the authenticated user as owner - Have default budget values set to 0 - Not be assigned to any workspace initially (can be configured later) - Not be archived by default Returns comprehensive project details including ID, timestamps, budget information, and user assignments.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the new project. Can be any string including special characters, Unicode, and emojis. Empty strings are allowed but not recommended. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Workspace

**Slug:** `BREEZE_CREATE_WORKSPACE`

Tool to create a new workspace. Use after deciding on the workspace name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the new workspace (required). Can be any string including empty. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Card

**Slug:** `BREEZE_DELETE_CARD`

Tool to delete a specific card (task) by its ID. Use when you need to remove a task permanently; deletions cannot be undone.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `card_id` | integer | Yes | ID of the card to delete |
| `project_id` | integer | Yes | ID of the project containing the card |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Project

**Slug:** `BREEZE_DELETE_PROJECT`

Tool to delete a specific project by ID. Use when you need to remove a project after confirming its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project_id` | integer | Yes | Numeric ID of the project to delete. Must be a positive integer. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Person from Project

**Slug:** `BREEZE_DELETE_PROJECT_PERSON`

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".

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `user_id` | integer | Yes | Numeric ID of the user/person to remove from the project |
| `project_id` | integer | Yes | Numeric ID of the project from which the user will be removed |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Workspace

**Slug:** `BREEZE_DELETE_WORKSPACE`

Tool to delete a specific workspace by ID. Use when permanently removing a workspace after confirming the correct workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspace_id` | integer | Yes | The numeric ID of the workspace to delete. Must be a positive integer. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Card

**Slug:** `BREEZE_GET_CARD`

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.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `card_id` | integer | Yes | ID of the card to retrieve |
| `project_id` | integer | Yes | ID of the project containing the card |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### GET_CARDS

**Slug:** `BREEZE_GET_CARDS`

Tool to get all cards (tasks) for a specific project. Use after confirming the project exists. Example: "List all cards in project 42."

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `archived` | boolean | No | If set to true, returns archived cards. Defaults to active cards only. |
| `project_id` | integer | Yes | ID of the Breeze project to retrieve cards for |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project

**Slug:** `BREEZE_GET_PROJECT`

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".

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project_id` | integer | Yes | Unique identifier of the project to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project People

**Slug:** `BREEZE_GET_PROJECT_PEOPLE`

Tool to get all users in a project. Use when you have a valid project ID and need to list its users.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project_id` | integer | Yes | Numeric ID of the project whose users to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Projects

**Slug:** `BREEZE_GET_PROJECTS`

Retrieves a list of all active (non-archived) projects in Breeze. Returns comprehensive project details including budget, time tracking, assigned users, tags, and metadata. Use this action to: - Get an overview of all current projects - Find specific projects by browsing the list - Access project IDs for use with other project-related actions - Check project budgets, hours tracked, and team assignments Note: Only returns active projects. Use GET_ARCHIVED_PROJECTS to retrieve archived projects.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `team_id` | integer | No | Team ID to scope the projects to a specific team. Usually not needed as the team is determined by authentication. Only provide this if you need to override the default team or if the authenticated user belongs to multiple teams. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workspace

**Slug:** `BREEZE_GET_WORKSPACE`

Tool to get a specific workspace by ID. Use when you need workspace details including projects after confirming the workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspace_id` | integer | Yes | ID of the workspace to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workspaces

**Slug:** `BREEZE_GET_WORKSPACES`

Tool to get all workspaces. Use when you need to list available workspaces for the authenticated user.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Move Card

**Slug:** `BREEZE_MOVE_CARD`

Tool to move a card to a different stage or position. Use after confirming stage_id and prev_id.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `card_id` | integer | Yes | ID of the card to move |
| `prev_id` | integer | No | ID of the card that should precede the moved card in the new stage |
| `stage_id` | integer | Yes | ID of the stage to move the card to |
| `project_id` | integer | Yes | ID of the project containing the card |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
