Cloud-based task management tool helping individuals and teams get organized.
Cloud-based task management tool helping individuals and teams get organized. On Nagent, Nozbe Teams is exposed as a fully-configurable task management integration that any agent can call — 48 actions, and API key authentication. No code is required to wire Nozbe Teams into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Nozbe Teams to automate the kinds of tasks task management teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Nozbe Teams into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Nozbe Teams, with input parameters and output schema. Drop these into any step of an agent built in Helix.
NOZBE_TEAMS_CREATE_ATTACHMENTTool to add attachment metadata to a comment. Use when you need to create attachment metadata for a file associated with a comment. This creates the metadata record; actual file upload may be a separate step depending on the workflow.
Input parameters
Attachment name/filename. This is the name of the file that will be displayed in the UI.
MIME type of the file. Specifies the file type classification (e.g., 'application/pdf', 'image/jpeg', 'text/plain'). If not provided, it may be inferred from the file extension.
Comment ID (16 characters alphanumeric identifier) to which the attachment will be added
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_COMMENTTool to add a comment to a task in Nozbe Teams. Use when you need to add feedback, notes, or updates to a specific task.
Input parameters
Comment body text.
Whether the comment is visible to the entire team.
Task ID (16 characters) to which the comment will be added.
Whether the comment should be pinned to the top of the task.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_PROJECT_SECTIONTool to create a new project section in Nozbe Teams. Use when you need to add a section to organize tasks within a project.
Input parameters
Section name (1-255 characters)
Section position for ordering within the project. If not specified, the section will be added at the end.
Project ID (16 alphanumeric characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_REMINDERTool to add a reminder to a task in Nozbe Teams. Use when you need to set up a notification for a specific task at a given time.
Input parameters
The unique identifier of the task to add a reminder to (16 characters)
The timestamp (in milliseconds since epoch) when the reminder should trigger
Whether the reminder is for an all-day event (true) or a specific time (false)
Whether the reminder time is relative to the task's due date (true) or an absolute timestamp (false)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_TAG_ASSIGNMENTTool to add a tag assignment to a task. Use when you need to tag or label a task for organization or categorization purposes.
Input parameters
Tag ID (16 characters). The tag to assign to the task.
Task ID (16 characters). The task to assign the tag to.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_TASKTool to create a new task in Nozbe Teams. Use when you need to add a task to a project or personal task list. Only the task name is required; all other fields are optional.
Input parameters
Task name (1-255 characters). Required field to identify the task.
Due date as Unix timestamp (seconds since epoch). When the task should be completed by.
Whether the task is an all-day task without a specific time. Defaults to false if not provided.
Project ID where the task will be created (16 alphanumeric characters or 'task_me' for personal tasks). If not specified, the task may be created in a default location.
Whether the current user should follow this task to receive notifications about updates. Defaults to false if not provided.
User ID of the person responsible for completing the task (6-16 characters or 'author' to assign to the creator).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_TEAM_MEMBERTool to add a team member in Nozbe Teams. Use when you need to add an existing user to a team with a specific role and status. The user must already exist in the system before they can be added to a team.
Input parameters
Role to assign to the team member. Determines the level of permissions the member has within the team.
Optional alias or display name for the team member (max 255 characters). Useful for customizing how the member appears in the team.
Status of the team member. Note: The API may automatically set status to 'pending' for new members regardless of the requested value.
Team ID where the member will be added (16 alphanumeric characters). You can get team IDs from the list teams action.
User ID of the person to add as a team member (16 alphanumeric characters). The user must already exist in the system.
Optional description or notes about the team member. Can be used to store additional information about their role or responsibilities.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_CREATE_USERTool to create a new placeholder user in Nozbe Teams. Use when you need to add a placeholder user to the system. Note: Only placeholder users can be created via API - attempting to create non-placeholder users will fail with a 400 error.
Input parameters
User name (1-255 characters). This is the display name for the user.
Avatar color for the user. Must be one of the predefined avatar colors (avatarColor1 through avatarColor12).
Timezone for the user (e.g., 'America/New_York', 'Europe/London'). Used to localize time displays for the user.
Whether the user is a placeholder user. IMPORTANT: Only placeholder users (is_placeholder: true) can be created via API. Attempting to create non-placeholder users will return a 400 error.
Email address for sending an invitation to the user. Optional field that can be used to invite the user to activate their account.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_DELETE_COMMENTTool to permanently delete a comment by its ID. Use when you need to remove a comment from a task. Returns the deleted comment object with all its properties.
Input parameters
Unique identifier of the comment to delete (16 alphanumeric characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_DELETE_PROJECTTool to delete a project in Nozbe Teams by its ID. Use when you need to permanently remove a project from the workspace.
Input parameters
Project ID to delete (16 characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_DELETE_REMINDERTool to delete a reminder by its unique ID. Use when you need to remove a reminder from Nozbe Teams.
Input parameters
Object ID (16 alphanumeric characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_DELETE_TAG_ASSIGNMENTTool to delete a tag assignment by its ID. Use when you need to remove a tag from a task or project.
Input parameters
Object ID of the tag assignment to delete (16 characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_DELETE_TASKTool to delete a task in Nozbe Teams by its ID. Use when you need to permanently remove a task from the workspace.
Input parameters
Task ID to delete (16 characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_ATTACHMENTTool to get attachment metadata by its ID. Use when you need to retrieve details about a specific file attached to a comment.
Input parameters
File ID (16 characters alphanumeric identifier)
Comment ID (16 characters alphanumeric identifier)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_COMMENTTool to retrieve a comment by its ID from Nozbe Teams. Use when you need to fetch details of a specific comment on a task.
Input parameters
Comment ID (16 alphanumeric characters)
Comma-separated list of fields to return. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_PROJECTTool to retrieve a project by its ID from Nozbe Teams. Use when you need to fetch details about a specific project.
Input parameters
Project ID (16 characters). Unique identifier for the project.
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_PROJECT_ACCESSTool to retrieve project access details by ID. Use when you need to check a team member's access permissions and manager status for a specific project.
Input parameters
Project access ID (16 alphanumeric characters)
Fields to return (comma-separated list of field names)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_PROJECT_SECTIONTool to retrieve a project section by ID from Nozbe Teams. Use when you need to fetch details of a specific section within a project, including its name, position, and timestamps.
Input parameters
Object ID (16 characters) of the project section to retrieve
Fields to return in the response. Comma-separated list of field names to include in the response.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_REMINDERTool to get a reminder by ID from Nozbe Teams. Use when you need to retrieve details about a specific reminder.
Input parameters
Object ID (16 characters) of the reminder to retrieve.
Comma-separated list of fields to return. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TAGTool to get a tag by ID from Nozbe Teams. Use when you need to retrieve details about a specific tag.
Input parameters
Object ID (16 characters)
List of fields that should be returned for each object, separated with commas. Example: 'id,name,color'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TAG_ASSIGNMENTTool to retrieve a tag assignment by its ID. Use when you need to fetch details about a specific tag-task relationship in Nozbe Teams.
Input parameters
Tag assignment ID (16 alphanumeric characters)
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TASKTool to retrieve a task by its ID from Nozbe Teams. Use when you need to fetch details about a specific task.
Input parameters
Task ID (16 characters). Unique identifier for the task.
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TASK_EVENTTool to get a task event by ID. Use when you need to retrieve details about a specific task event.
Input parameters
Object ID (16 characters alphanumeric identifier)
Comma-separated list of fields to return. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TEAMTool to retrieve a team by its ID from Nozbe Teams. Use when you need to fetch details about a specific team.
Input parameters
Team ID (16 characters). Unique identifier for the team.
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_TEAM_MEMBERTool to retrieve a team member by ID from Nozbe Teams. Use when you need to fetch details about a specific team member.
Input parameters
Object ID (16 characters). Unique identifier for the team member.
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_GET_USERTool to retrieve a user by their ID from Nozbe Teams. Use when you need to fetch details about a specific user.
Input parameters
User ID (16 characters). Unique identifier for the user.
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_ATTACHMENTSTool to get all attachments related to a specific comment in Nozbe Teams. Use when you need to retrieve attachment metadata (ID, name, size, MIME type, etc.) for a comment. Returns an array of attachment objects with their properties.
Input parameters
Comment ID (16 characters alphanumeric identifier)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_COMMENTSTool to get accessible comments with optional filtering by task_id and pagination support. Use when you need to retrieve comments, optionally filtered by task, with control over pagination and field selection.
Input parameters
Max number of objects to return. Default is 100, range: 1-10000.
Comma-separated list of fields to include in response (e.g., 'id,body,task_id').
Number of objects to skip for pagination. Default is 0.
Field-based sorting parameters. Use '-' prefix for descending order (e.g., '-created_at' for newest first).
Filter comments by associated task. Must be a 16-character alphanumeric task identifier.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_GROUP_ASSIGNMENTSTool to get accessible group assignments from Nozbe Teams. Use when you need to retrieve assignments between groups and projects/members, with optional filtering by group_id, object_id, or group_type.
Input parameters
Max number of objects to return
Comma-separated list of fields to return in the response
Number of objects to skip for pagination
Sorting parameters for the results
Filter by group ID (16 characters alphanumeric)
Filter by object ID (16 characters alphanumeric)
Type of group assignment
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_PROJECT_ACCESSESTool to get accessible project accesses in Nozbe Teams. Use when you need to retrieve project access records, optionally filtered by sorting or field selection. Returns a list of project access objects showing which team members have access to which projects and their manager status.
Input parameters
Max number of objects to return. Default is 100.
List of fields that should be returned for each object, separated with commas. For example: 'id,project_id,is_manager'.
Number of objects to skip. Default is 0.
List of params for sorting results, separated with commas. For example: 'project_id' or 'is_manager,member_id'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_PROJECT_GROUPSTool to get accessible project groups from Nozbe Teams. Use when you need to list or search for project groups with optional filtering by name, team, or other criteria.
Input parameters
Filter project groups by name.
Maximum number of project groups to return. Default is 100.
Comma-separated field names to include in the response (e.g., 'id,name,team_id').
Number of project groups to skip for pagination. Default is 0.
Comma-separated sorting parameters. Prefix with '-' for descending order (e.g., 'name' or '-name').
Filter project groups by team ID (16-character alphanumeric identifier).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_PROJECTSTool to retrieve accessible projects with optional filtering. Use when you need to list projects, optionally filtered by team_id or is_open status.
Input parameters
Maximum number of projects to return (1-10000). Default is 100.
Comma-separated list of fields to include in the response. If not specified, all fields are returned.
Number of projects to skip for pagination. Default is 0.
Comma-separated list of fields to sort by (e.g., 'created_at', '-name' for descending).
Filter projects by team ID (16 characters alphanumeric).
Filter by Single Tasks indicator. Set to true to show only single task projects, false for regular projects.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_PROJECT_SECTIONSTool to retrieve accessible project sections with optional filtering. Use when you need to list sections within projects, optionally filtered by project_id.
Input parameters
Maximum number of objects to return.
Comma-separated list of fields to include in the response. If not specified, all fields are returned.
Number of objects to skip for pagination. Default is 0.
Comma-separated list of fields to sort by (e.g., 'created_at', '-name' for descending).
Filter sections by project ID (16 characters alphanumeric).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_REMINDERSTool to get accessible reminders from Nozbe Teams. Use when you need to retrieve reminders, optionally filtered by task ID, all-day status, or other parameters.
Input parameters
Max number of reminders to return (1-10000, default: 100)
Comma-separated list of specific fields to include in response (e.g., 'id,task_id,remind_at')
Number of reminders to skip for pagination (minimum: 0, default: 0)
Comma-separated sorting fields. Prefix with '-' for descending order (e.g., '-remind_at,id')
Filter reminders by task ID
Filter reminders by all-day status
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_TAG_ASSIGNMENTSTool to get accessible tag assignments with optional filtering by tag_id or task_id. Use when you need to retrieve associations between tags and tasks, optionally filtered by specific tag or task identifiers.
Input parameters
Max number of tag assignments to return
Comma-separated list of fields to return in the response
Number of tag assignments to skip for pagination
Sorting parameters for the results
Filter results by tag ID (16 characters, alphanumeric)
Filter results by task ID (16 characters, alphanumeric)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_TAGSTool to get accessible tags from Nozbe Teams. Use when you need to retrieve tags, optionally filtered by name, favorite status, or task association.
Input parameters
Filter tags by name (exact match or partial)
Max number of tags to return (1-10000, default: 100)
Specific fields to return in response, comma-separated (e.g., 'id,name,is_favorite')
Number of tags to skip for pagination (default: 0)
Sorting parameters, comma-separated. Use minus sign for descending order (e.g., 'created_at,-name')
Filter tags associated with a specific task ID (16 characters)
Filter by favorite status. Set to true to get only favorite tags
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_TASK_EVENTSTool to get accessible task events from Nozbe Teams. Use when you need to retrieve task activity history or audit trail. Filter by task_id to get events for a specific task.
Input parameters
Max number of task events to return. Used for pagination.
Comma-separated list of specific fields to return in the response. If not specified, all fields are returned.
Number of task events to skip before starting to return results. Used for pagination.
Sorting parameters for the returned task events. Specify field name to sort by (e.g., 'created_at' or '-created_at' for descending).
Filter task events by task ID. Must be exactly 16 alphanumeric characters.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_TASKSTool to retrieve accessible tasks from Nozbe Teams. Use when you need to query tasks with optional filters like project_id or review_reason. Supports pagination and sorting of results.
Input parameters
Max number of tasks to return (1-10000, default: 100)
Comma-separated list of specific fields to return in the response
Number of tasks to skip for pagination
Comma-separated list of fields for sorting results. Use '-' prefix for descending order (e.g., '-created_at,name')
Filter tasks by Project ID (16 alphanumeric characters)
Review reason for tasks
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_LIST_USERSTool to retrieve accessible users from Nozbe Teams. Use when you need to query users with optional filters like name. Supports pagination and sorting of results.
Input parameters
Filter users by name (partial match supported, e.g., 'John')
Max number of users to return (1-10000, default: 100)
Comma-separated list of specific fields to return in the response
Number of users to skip for pagination
Comma-separated list of fields for sorting results. Use '-' prefix for descending order (e.g., '-name,created_at')
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_POLL_NEW_TASKSTool to poll for new tasks created since the last call. Use when you need to retrieve recently created tasks in Nozbe Teams. Optionally filter by project or responsible user, and specify which fields to return.
Input parameters
Comma-separated list of fields to return in the response (e.g., 'id,name,project_id'). If not specified, all fields are returned.
Filter tasks by project ID. Must be a 16-character alphanumeric string.
Filter tasks by responsible user ID. Must be a 16-character alphanumeric string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_POLL_UPDATED_TASKSTool to poll for tasks that have been updated since the last call. Use when you need to retrieve recently modified tasks from Nozbe Teams.
Input parameters
Comma-separated list of fields to return in the response. If not specified, all fields are returned.
Filter tasks by project ID (16 characters). Only tasks from the specified project will be returned.
Filter tasks by responsible user ID (16 characters). Only tasks assigned to the specified user will be returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_COMMENTTool to update an existing comment in Nozbe Teams. Use when you need to modify a comment's text, pin status, deletion status, or extra metadata.
Input parameters
The unique identifier of the comment to update (16 characters).
The updated comment text content. If provided, replaces the existing comment body.
Additional metadata or extra information to attach to the comment.
Set to true to pin the comment, false to unpin it.
Set to true to mark the comment as deleted, false to restore it.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_PROJECTTool to update a project in Nozbe Teams. Use when you need to modify project properties such as name, status, color, or description. All fields except the project ID are optional - only provide fields you want to update.
Input parameters
Object ID of the project to update (16 characters)
New name for the project (max 255 characters)
Color code for the project (predefined color enum or null)
Whether the project is open (active) or closed
Description of the project
Whether the project is marked as favorite
Project preferences as JSON string
Position of the project in the sidebar
Whether the project contains single actions (no sections)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_PROJECT_ACCESSTool to update project access permissions in Nozbe Teams. Use when modifying member privileges for a specific project.
Input parameters
Project access ID to update (16 alphanumeric characters)
Member ID to grant access (16 alphanumeric characters)
Whether the member should have manager privileges for this project
Project ID to associate with this access (16 alphanumeric characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_TASKTool to update a task in Nozbe Teams. Use when you need to modify task properties such as name, project, responsible user, due date, or other attributes. All fields except the task ID are optional - only provide fields you want to update.
Input parameters
Object ID of the task to update (16 characters)
New name for the task (1-255 characters)
Extra metadata for the task (nullable)
Unix timestamp for task due date (nullable)
Whether the task is an all-day task
Project ID to move the task to (16 characters)
Time spent on task in seconds (nullable)
Whether the task is followed by the current user
Time needed for the task in seconds (nullable)
Whether the task is abandoned
ID of the user responsible for the task (6-16 characters or 'author')
Task priority position (nullable)
Project section ID to assign the task to (16 characters, nullable)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_TEAMTool to update a team in Nozbe Teams. Use when you need to modify team properties such as name, color, or sidebar position. All fields except the team ID are optional - only provide fields you want to update.
Input parameters
Object ID of the team to update (16 characters)
New name for the team
Team color (e.g., avatarColor7)
Position of the team in the sidebar
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_TEAM_MEMBERTool to update a team member in Nozbe Teams. Use when you need to modify team member properties such as role, status, alias, or description. All fields except the team member ID are optional - only provide fields you want to update.
Input parameters
Object ID of the team member to update (16 characters)
Available role options for team members.
Member alias or display name (max 255 characters). Useful for customizing how the member appears in the team.
Available status options for team members.
Member description or notes about their role or responsibilities.
Whether member is marked as favorite
Position in sidebar for display ordering
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
NOZBE_TEAMS_UPDATE_USERTool to update a user in Nozbe Teams. Use when you need to modify user properties such as name, avatar color, placeholder status, or contact information. All fields except the user ID are optional - only provide fields you want to update.
Input parameters
Object ID of the user to update (16 characters)
New name for the user (1-255 characters)
Available avatar color options for users.
User's time zone identifier (e.g., 'America/New_York', 'Europe/London'). Set to null to remove the time zone.
URL of the user's avatar image. Set to null to remove the avatar URL.
Whether the user is a placeholder. Placeholder users are typically used for assigning tasks to external or future team members.
Email address for user invitation. Set to null to remove the invitation email.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 91 agents privately built on Nagent that already use Nozbe Teams.
Build on Nagent
Connect Nozbe Teams to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Nozbe Teams, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Nozbe Teams is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Nozbe Teams is connected, you configure its 48 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Nozbe Teams steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Nozbe Teams event fires, the agent kicks off automatically.
Every Nozbe Teams action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Nozbe Teams ships with 48 pre-built task management actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Nozbe Teams together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Nozbe Teams-based workflows tailored to your business.