Dart
dartThe ultimate AI project management tool.
Acciones disponibles (16)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Add Task CommentDART_ADD_TASK_COMMENTAcciónTool to create a new comment on a DART task. Use when you need to add feedback, notes, or discussion to a specific task. Supports markdown formatting and threaded replies via parentId.
DART_ADD_TASK_COMMENTAcciónTool to create a new comment on a DART task. Use when you need to add feedback, notes, or discussion to a specific task. Supports markdown formatting and threaded replies via parentId.
Parámetros de entrada
textstringObligatorioThe full comment content, supporting markdown formatting
task_idstringObligatorioThe unique 12-character alphanumeric ID of the task receiving the comment
parent_idstringOptional ID of a parent comment for creating threaded replies
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add Task Time TrackingDART_ADD_TASK_TIME_TRACKINGAcciónTool to add a time tracking entry to a DART task. Use when you need to record time spent on a specific task. The finishedAt timestamp must be after startedAt.
DART_ADD_TASK_TIME_TRACKINGAcciónTool to add a time tracking entry to a DART task. Use when you need to record time spent on a specific task. The finishedAt timestamp must be after startedAt.
Parámetros de entrada
idstringObligatorioThe task ID (12-character alphanumeric identifier)
userstringThe name or email of the user to attribute the tracked time to. Use null or omit to use the current user
startedAtstringObligatorioThe start timestamp for the tracked time entry in ISO 8601 format (e.g., 2025-12-15T10:00:00Z)
finishedAtstringObligatorioThe end timestamp for the tracked time entry in ISO 8601 format (e.g., 2025-12-15T11:00:00Z). Must be after the start time
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create DocDART_CREATE_DOCAcciónTool to create a new doc in Dart. Use when you need to record a new document that the user intends to write down. By default, the created doc will be in the Docs folder unless a specific folder is specified.
DART_CREATE_DOCAcciónTool to create a new doc in Dart. Use when you need to record a new document that the user intends to write down. By default, the created doc will be in the Docs folder unless a specific folder is specified.
Parámetros de entrada
itemobjectObligatorioContainer for doc creation data including title, optional folder, and optional text content
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create TaskDART_CREATE_TASKAcciónTool to create a new task in DART with title and optional metadata. Use when you need to add a task to a workspace.
DART_CREATE_TASKAcciónTool to create a new task in DART with title and optional metadata. Use when you need to add a task to a workspace.
Parámetros de entrada
itemobjectObligatorioTask details wrapped in item object.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete DocDART_DELETE_DOCAcciónTool to move an existing doc to the trash where it can be recovered if needed. Use when you need to delete a doc without permanently removing it.
DART_DELETE_DOCAcciónTool to move an existing doc to the trash where it can be recovered if needed. Use when you need to delete a doc without permanently removing it.
Parámetros de entrada
idstringObligatorioUniversal, unique identifier for the doc. Must match pattern ^[a-zA-Z0-9]{12}$
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete TaskDART_DELETE_TASKAcciónTool to delete an existing task in Dart by moving it to trash. Use when a task needs to be removed but can be recovered later.
DART_DELETE_TASKAcciónTool to delete an existing task in Dart by moving it to trash. Use when a task needs to be removed but can be recovered later.
Parámetros de entrada
idstringObligatorioThe universal, unique identifier for the task. Must be 12 alphanumeric characters.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User Space ConfigurationDART_GET_CONFIGAcciónTool to retrieve workspace configuration including dartboards, folders, types, statuses, and more. Use when you need to understand available options in the workspace.
DART_GET_CONFIGAcciónTool to retrieve workspace configuration including dartboards, folders, types, statuses, and more. Use when you need to understand available options in the workspace.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get DocDART_GET_DOCAcciónTool to retrieve an existing doc with metadata and content. Use when you need to access a specific document's details including title, folder, and text content.
DART_GET_DOCAcciónTool to retrieve an existing doc with metadata and content. Use when you need to access a specific document's details including title, folder, and text content.
Parámetros de entrada
idstringObligatorioThe universal, unique identifier of the document. Must be a 12-character alphanumeric string (pattern: ^[a-zA-Z0-9]{12}$).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get TaskDART_GET_TASKAcciónTool to retrieve an existing task with full details including title, dartboard, status, and description. Use when you need to fetch complete information about a specific task.
DART_GET_TASKAcciónTool to retrieve an existing task with full details including title, dartboard, status, and description. Use when you need to fetch complete information about a specific task.
Parámetros de entrada
idstringObligatorioUniversal unique task ID (12 alphanumeric characters)
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List CommentsDART_LIST_COMMENTSAcciónTool to list comments for a task with filtering options. Use when you need to retrieve comments on a specific task. Supports filtering by author, text content, date range, and pagination. Can be ordered by date or hierarchical thread structure.
DART_LIST_COMMENTSAcciónTool to list comments for a task with filtering options. Use when you need to retrieve comments on a specific task. Supports filtering by author, text content, date range, and pagination. Can be ordered by date or hierarchical thread structure.
Parámetros de entrada
ostring[]Ordering options for results. Valid values: 'published_at' (ascending), '-published_at' (descending), 'hierarchical' (thread order).
idsstringFilter by specific comment IDs (comma-separated).
textstringFilter by comment text content. Searches for text within comments.
limitintegerNumber of results per page for pagination.
authorstringFilter by comment author name or email.
offsetintegerStarting index for pagination results.
task_idstringObligatorioThe task identifier to retrieve associated comments. This parameter is required.
author_idstringFilter by author's unique identifier.
parent_idstringFilter comments by parent comment identifier to get replies.
published_atstringFilter by exact publication timestamp (ISO 8601 format).
published_at_afterstringFilter for comments published after this date (ISO 8601 format).
published_at_beforestringFilter for comments published before this date (ISO 8601 format).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Help Center ArticlesDART_LIST_HELP_CENTER_ARTICLESAcciónTool to search help center articles by semantic similarity to query. Use when you need to find relevant help articles based on a short search query (1-5 words). Returns up to two most relevant articles.
DART_LIST_HELP_CENTER_ARTICLESAcciónTool to search help center articles by semantic similarity to query. Use when you need to find relevant help articles based on a short search query (1-5 words). Returns up to two most relevant articles.
Parámetros de entrada
querystringObligatorioThe search query to find relevant help articles. Must be 1-5 words with minimum length of 1 character. The endpoint performs semantic similarity matching to find the most relevant articles.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List TasksDART_LIST_TASKSAcciónTool to list tasks with powerful filtering options. Use when you need to retrieve tasks from DART with filters like dartboard, status, assignee, tags, priority, dates, or completion state. Supports pagination and custom ordering.
DART_LIST_TASKSAcciónTool to list tasks with powerful filtering options. Use when you need to retrieve tasks from DART with filters like dartboard, status, assignee, tags, priority, dates, or completion state. Supports pagination and custom ordering.
Parámetros de entrada
ostring[]Ordering field(s) for results. Valid options: 'dartboard__order', 'order', 'created_at', 'updated_at', 'title'. Use '-' prefix for descending order.
idsstringFilter by specific task IDs (comma-separated).
tagstringFilter by tag name.
sizeintegerFilter by task size or story points.
typestringFilter by task type name.
viewstringFilter by view name.
limitintegerNumber of results to return per page for pagination.
titlestringFilter by task title text content.
due_atstringFilter by exact due date timestamp (ISO 8601 format).
offsetintegerThe initial index from which to return results for pagination.
statusstringFilter by task status name.
tag_idstringFilter by tag unique identifier.
type_idstringFilter by task type unique identifier.
view_idstringFilter by view unique identifier.
assigneestringFilter by assignee name or email.
in_trashbooleanInclude or exclude trashed tasks. Set to true to show only trashed tasks, false to exclude them.
prioritystringFilter by priority level.
start_atstringFilter by exact start date timestamp (ISO 8601 format).
dartboardstringFilter by dartboard name.
parent_idstringFilter by parent task identifier to get subtasks.
status_idstringFilter by status unique identifier.
created_atstringFilter by exact creation timestamp (ISO 8601 format).
created_bystringFilter by creator name or email.
updated_atstringFilter by exact update timestamp (ISO 8601 format).
updated_bystringFilter by last updater name or email.
assignee_idstringFilter by assignee's unique identifier.
descriptionstringFilter by task description text content.
no_defaultsbooleanDisable default filters applied by the API (default: false).
dartboard_idstringFilter by dartboard unique identifier.
due_at_afterstringFilter for tasks due after this date (ISO 8601 format).
is_completedbooleanFilter by completion status. True for completed tasks, false for incomplete tasks.
created_by_idstringFilter by creator's unique identifier.
due_at_beforestringFilter for tasks due before this date (ISO 8601 format).
updated_by_idstringFilter by last updater's unique identifier.
start_at_afterstringFilter for tasks starting after this date (ISO 8601 format).
start_at_beforestringFilter for tasks starting before this date (ISO 8601 format).
created_at_afterstringFilter for tasks created after this date (ISO 8601 format).
updated_at_afterstringFilter for tasks updated after this date (ISO 8601 format).
created_at_beforestringFilter for tasks created before this date (ISO 8601 format).
updated_at_beforestringFilter for tasks updated before this date (ISO 8601 format).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Move TaskDART_MOVE_TASKAcciónTool to move a task to a specific position within its dartboard. Use when you need to reorder tasks in a list. Specify either afterTaskId or beforeTaskId to position the task.
DART_MOVE_TASKAcciónTool to move a task to a specific position within its dartboard. Use when you need to reorder tasks in a list. Specify either afterTaskId or beforeTaskId to position the task.
Parámetros de entrada
idstringObligatorioThe universal, unique identifier of the task to reposition. Must be a 12-character alphanumeric identifier
afterTaskIdstringPlaces the task immediately after the specified task ID. Using null moves the task to the end of the list. Exactly one of afterTaskId or beforeTaskId should be used
beforeTaskIdstringPlaces the task immediately before the specified task ID. Using null moves the task to the beginning of the list. Exactly one of afterTaskId or beforeTaskId should be used
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve Skill By TitleDART_RETRIEVE_SKILL_BY_TITLEAcciónTool to retrieve a skill by its exact title from the workspace. Use when you need to find details about a specific skill including its ID and instructions.
DART_RETRIEVE_SKILL_BY_TITLEAcciónTool to retrieve a skill by its exact title from the workspace. Use when you need to find details about a specific skill including its ID and instructions.
Parámetros de entrada
titlestringObligatorioThe title of the skill to retrieve. Must be an exact match.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update DocDART_UPDATE_DOCAcciónTool to update an existing doc in Dart. Use when you need to modify a document's title, folder location, or content. Any properties not specified will remain unchanged.
DART_UPDATE_DOCAcciónTool to update an existing doc in Dart. Use when you need to modify a document's title, folder location, or content. Any properties not specified will remain unchanged.
Parámetros de entrada
itemobjectObligatorioContainer for doc update data including the document ID and optional title, folder, and text content to update
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update TaskDART_UPDATE_TASKAcciónTool to update an existing task in DART with new properties. Use when you need to modify a task's title, status, assignees, or other attributes. Only properties specified in the request will be updated.
DART_UPDATE_TASKAcciónTool to update an existing task in DART with new properties. Use when you need to modify a task's title, status, assignees, or other attributes. Only properties specified in the request will be updated.
Parámetros de entrada
itemobjectObligatorioTask details wrapped in item object. Only properties specified will be updated.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not