# Stormboard

An online sticky note whiteboard making meetings, brainstorms, and creative projects more productive and effective.

- **Category:** productivity
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 41
- **Triggers:** 0
- **Slug:** `STORMBOARD`
- **Version:** 20260227_00

## Tools

### Accept a Storm Invite

**Slug:** `STORMBOARD_ACCEPT_A_STORM_INVITE`

Tool to accept a Storm invitation and join the Storm. Use when a user wants to accept an invitation to join a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm invitation to accept. |

#### 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 |

### Add a Favorite Star

**Slug:** `STORMBOARD_ADD_A_FAVORITE_STAR`

Tool to add a favorite star to a Storm on the Dashboard. Use when you need to mark a Storm as a favorite.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to add to favorites. |

#### 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 |

### Check Authentication

**Slug:** `STORMBOARD_CHECK_AUTHENTICATION`

Tool to verify API key authentication validity. Use when you need to test if the API credentials are valid and properly configured.

#### 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 |

### Close a Storm

**Slug:** `STORMBOARD_CLOSE_A_STORM`

Tool to close an open Storm, making it read-only. Use when you need to prevent further changes to a Storm. Only the Storm creator or a Storm administrator can close a storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the storm to close. You must be the Storm creator or a Storm administrator to close a storm. |

#### 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 a Line Connector

**Slug:** `STORMBOARD_CREATE_A_LINE_CONNECTOR`

Tool to create a line connector between two ideas. Use when you need to establish a connection between a pair of ideas on the Storm board.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to_idea_id` | integer | Yes | The unique identifier of the destination idea where the connector ends. |
| `from_idea_id` | integer | Yes | The unique identifier of the source idea where the connector originates. |

#### 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 a new chat message

**Slug:** `STORMBOARD_CREATE_A_NEW_CHAT_MESSAGES`

Tool to create a new chat message in a Stormboard storm. Use when you need to post a message to a specific storm's chat.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `message` | string | Yes | The content of the chat message to be posted. |
| `storm_id` | string | Yes | The unique identifier of the storm where the chat message will be created. |

#### 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 a New Storm

**Slug:** `STORMBOARD_CREATE_A_NEW_STORM`

Tool to create a new Storm in Stormboard for interactive planning and collaboration. Use when you need to create a digital workspace for brainstorming, planning, or team collaboration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `plan` | string ("personal" | "student" | "educator" | "team") | Yes | Storm type. Must be one of: 'personal', 'student', 'educator', or 'team'. If 'team' is selected, teamId must also be provided. |
| `title` | string | Yes | The title of the Storm. This is a required field. |
| `teamId` | string | No | The team's unique id. Required if the 'plan' parameter is set to 'team'. You must be a Storm Administrator on this team to create Storms. |
| `avatars` | boolean | No | Show where each user is in realtime on the Storm wall with an avatar and name. Optional boolean flag. |
| `description` | string | No | The description or goals of the Storm. Optional field to provide context about the Storm's purpose. |
| `ideacreator` | boolean | No | Show the idea creator's avatar on the corner of the idea. Optional boolean flag. |
| `votesperuser` | integer | No | Number of votes per user. Must be between 0 and 100. Defaults to 10 if not specified. |

#### 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 a New Tag

**Slug:** `STORMBOARD_CREATE_A_NEW_TAG`

Tool to create a new tag in a Storm without any data related to Ideas. Use when you need to add a new tag to a Storm's tag collection.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the tag to create. |
| `storm_id` | string | Yes | The unique identifier of the Storm to create a tag in. |

#### 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 a New User

**Slug:** `STORMBOARD_CREATE_A_NEW_USER`

Tool to create a new user account in Stormboard. An email will be sent to the newly created user asking them to verify their account. Use when you need to add a new user to the system.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | The email address for the new user. Must be a valid email format. An email will be sent to this address asking the user to verify their account. |
| `lastname` | string | Yes | The last name of the new user. |
| `password` | string | Yes | The password for the new user account. Should meet security requirements. |
| `username` | string | Yes | The username for the new user account. Must be unique. |
| `firstname` | string | Yes | The first name of the new 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 |

### Create an idea in Stormboard

**Slug:** `STORMBOARD_CREATE_AN_IDEA`

Tool to create a new idea in an existing Stormboard storm. Use when you need to add ideas, notes, or items to a storm with specific content and details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | The content or description of the idea. |
| `name` | string | Yes | The name or title of the idea. |
| `type` | string | No | Optional type of the idea. Must be one of: text, document, image, indexcard, video, whiteboard. |
| `color` | string | No | Optional color for the idea (e.g., hex color code or color name). |
| `stormid` | integer | Yes | The Storm ID where the idea will be created. This is the unique identifier of the storm. |

#### 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 Tag Data for an Idea

**Slug:** `STORMBOARD_CREATE_TAG_DATA_FOR_AN_IDEA`

Tool to update tag data for an idea. Any tag not in the change list remains unchanged. Tags not found in the Storm are created automatically with the provided tag data applied.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | object | Yes | Dictionary of tag key-value pairs to apply to the idea. Tags not in this list remain unchanged. Tags not found in the Storm will be created automatically. |
| `idea_id` | string | Yes | The unique identifier of the idea to update tags 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 |

### Decline a Storm Invite

**Slug:** `STORMBOARD_DECLINE_A_STORM_INVITE`

Tool to decline a Storm invitation and remove it from your list. Use when a user wants to reject an invitation to join a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm invitation to decline. |

#### 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 a Connector Between Ideas

**Slug:** `STORMBOARD_DELETE_A_CONNECTOR_BETWEEN_IDEAS`

Tool to delete a line connector between two ideas. Use when you need to remove a connection between a pair of ideas on the Storm board.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to_idea_id` | integer | Yes | The unique identifier of the destination idea where the connector ends. |
| `from_idea_id` | integer | Yes | The unique identifier of the source idea where the connector originates. |

#### 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 a Specific Connector

**Slug:** `STORMBOARD_DELETE_A_SPECIFIC_CONNECTOR`

Tool to delete a line connector using the connector ID. Use when you need to remove a specific connector from the Storm board.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `connector_id` | string | Yes | The unique identifier of the connector to delete. |

#### 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 Storm Details

**Slug:** `STORMBOARD_DETAILS`

Tool to retrieve detailed information about a specific Storm. Use when you need to get complete Storm details including metadata, settings, and configuration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm 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 |

### Duplicate a Storm

**Slug:** `STORMBOARD_DUPLICATE_A_STORM`

Tool to duplicate an existing Storm. Use when you need to create a copy of a Storm with all its content.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to duplicate. |

#### 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 a list of connectors in a Storm

**Slug:** `STORMBOARD_GET_A_LIST_OF_CONNECTORS_IN_A_STORM`

Tool to retrieve a list of connectors within a specific Storm. Use when you need to access relationship data between ideas or elements in a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to retrieve connectors from. |

#### 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 a List of Ideas

**Slug:** `STORMBOARD_GET_A_LIST_OF_IDEAS`

Tool to retrieve all ideas from a Storm. Returns a list of ideas, but Files, Images, and Whiteboards do not contain their corresponding data at this time. Use when you need to get an overview of all ideas in a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to retrieve ideas from. |

#### 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 A List Of Participants

**Slug:** `STORMBOARD_GET_A_LIST_OF_PARTICIPANTS`

Tool to retrieve a list of all participants in a Storm. Use when you need to see who has access to a specific Storm and their roles.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to retrieve participants from. |

#### 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 A List Of Storms Invites

**Slug:** `STORMBOARD_GET_A_LIST_OF_STORMS_INVITES`

Tool to retrieve a list of storms that you have been invited to. Use when you need to see pending storm invitations 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 |

### Get List of Tags in Storm

**Slug:** `STORMBOARD_GET_A_LIST_OF_TAGS_IN_THE_STORM`

Tool to retrieve the list of tags that have been created in a Storm. Use when you need to view all tags available in a specific Storm. Note that tag data for individual ideas is not available through this endpoint.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to retrieve tags from. |

#### 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 A List Of Your Storms

**Slug:** `STORMBOARD_GET_A_LIST_OF_YOUR_STORMS`

Tool to retrieve a list of storms from Stormboard. Use when you need to browse or access available storms in the user's account.

#### 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 Authentication Info

**Slug:** `STORMBOARD_GET_AUTHENTICATION_INFO`

Tool to retrieve authentication information and API token for the authenticated user. Use when you need to get authentication details or verify API access credentials.

#### 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 Chat Messages

**Slug:** `STORMBOARD_GET_CHAT_MESSAGES`

Tool to retrieve a list of chat messages from a Stormboard storm. Use when you need to view the chat history for a specific storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the storm to retrieve chat messages from |

#### 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 Idea Data

**Slug:** `STORMBOARD_GET_IDEA_DATA`

Tool to retrieve detailed data and metadata for a specific idea. Use when you need to fetch information about an idea including its content, position, creator, votes, comments, and associated task details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `idea_id` | string | Yes | The unique identifier of the idea 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 Info About Your User

**Slug:** `STORMBOARD_GET_INFO_ABOUT_YOUR_USER`

Tool to retrieve authenticated user profile information. Use when you need to get the current user's details like name, email, or account metadata.

#### 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 My Storm Access

**Slug:** `STORMBOARD_GET_MY_STORM_ACCESS`

Tool to check if the authenticated user has access to a Storm and retrieve their permission level. Use when verifying user permissions for a specific Storm. Returns 401 error if user lacks access.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to check access 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 Storm Template

**Slug:** `STORMBOARD_GET_STORM_TEMPLATE`

Tool to retrieve template data for a Storm including all sections and subsections. Use when you need to get the organizational structure and template configuration of a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to retrieve template data from. |

#### 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 Tag Data For An Idea

**Slug:** `STORMBOARD_GET_TAG_DATA_FOR_AN_IDEA`

Tool to retrieve tag data for a specific idea in Stormboard. Use when you need to view all tags associated with a particular idea.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `idea_id` | string | Yes | The unique identifier of the idea to retrieve tags 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 Unread Chat Messages

**Slug:** `STORMBOARD_GET_UNREAD_CHAT_MESSAGES`

Tool to retrieve unread chat messages from a specific Storm. Use when you need to check for new messages in a Storm's chat.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | Unique identifier of the Storm to retrieve unread chat messages from |

#### 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 |

### Invite Participants to Storm

**Slug:** `STORMBOARD_INVITE_PARTICIPANTS`

Tool to invite people to join a Storm by email. Use when you need to add new participants to a Storm.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to invite participants to. |
| `participants` | array | Yes | List of email addresses of participants to invite to the Storm. |

#### 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 |

### Join a Storm

**Slug:** `STORMBOARD_JOIN_A_STORM`

Tool to join a Storm using its ID and access key. Use when a user wants to add themselves to a Storm's participant list.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to join. |
| `storm_key` | string | Yes | The access key required to join the Storm. |

#### 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 |

### Mark Chat Messages as Read

**Slug:** `STORMBOARD_MARK_CHAT_MESSAGES_AS_READ`

Tool to mark all chat messages as read in a Storm. Use when you need to mark all unread chat messages in a specific Storm as read.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm whose chat messages should be marked as read. |

#### 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 |

### Remove a Favorite Star

**Slug:** `STORMBOARD_REMOVE_A_FAVORITE_STAR`

Tool to remove a favorite star from a Storm on the Dashboard. Use when you need to unmark a Storm as a favorite.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to remove from favorites. |

#### 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 |

### Reopen a Storm

**Slug:** `STORMBOARD_RE_OPEN_A_STORM`

Tool to reopen a closed Storm. Use when you need to reopen a previously closed Storm. Note: You must be a Storm administrator or the team owner to perform this action.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `storm_id` | string | Yes | The unique identifier of the Storm to reopen. You must be a Storm administrator or the team owner to reopen a Storm. |

#### 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 |

### Update a Line Connector

**Slug:** `STORMBOARD_UPDATE_A_LINE_CONNECTOR`

Tool to update a specific line connector between two ideas. Use when you need to modify the label or style properties of an existing connector.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `label` | string | No | Updated label text for the connector |
| `style` | object | No | Style configuration for the line connector |
| `connector_id` | string | Yes | Unique identifier of the connector to update |

#### 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 |

### Update Notifications

**Slug:** `STORMBOARD_UPDATE_NOTIFICATIONS`

Tool to update user notification preferences. Use when you need to enable or disable email notifications for the authenticated user.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email_notifications` | boolean | No | Enable or disable email notifications. Set to true to enable email notifications, false to disable them. |

#### 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 |

### Update Section in Storm

**Slug:** `STORMBOARD_UPDATE_SECTION_IN_STORM`

Tool to update a section's title, description, and/or character in a Storm. Use when you need to modify section properties. Note: You must be a Storm administrator to perform this action.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | The new name/title for the section. |
| `storm_id` | string | Yes | The unique identifier of the storm containing the section. You must be a Storm administrator to update sections. |
| `character` | string | No | The character attribute for the section. |
| `description` | string | No | The updated description for the section. |
| `section_index` | string | Yes | The index position or identifier of the section to update. |

#### 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 |

### Update Storm Legend

**Slug:** `STORMBOARD_UPDATE_STORM_LEGEND`

Tool to update the color labels of the legend for a storm. Use when you need to customize the legend labels for storm items. You must be the storm creator or a storm administrator to perform this action.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `red` | string | No | Custom label for the red color in the legend |
| `blue` | string | No | Custom label for the blue color in the legend |
| `green` | string | No | Custom label for the green color in the legend |
| `orange` | string | No | Custom label for the orange color in the legend |
| `purple` | string | No | Custom label for the purple color in the legend |
| `yellow` | string | No | Custom label for the yellow color in the legend |
| `storm_id` | integer | Yes | Unique ID of the storm to update the legend for. You must be the storm creator or a storm administrator. |

#### 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 |

### Update Your Profile

**Slug:** `STORMBOARD_UPDATE_YOUR_PROFILE`

Tool to update your user profile information. Use when you need to modify the authenticated user's first name or last name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lastname` | string | No | The user's last name to update. |
| `firstname` | string | No | The user's first name to update. |

#### 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 |

### Verify Your Account

**Slug:** `STORMBOARD_VERIFY_YOUR_ACCOUNT`

Tool to verify a Stormboard account using a verification code. Use when you need to confirm account ownership or complete the account verification process.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | The verification code received for account verification |

#### 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 |
