NAiOS IconNAiOS Logo
Volver al catálogo

Dart

dart

The ultimate AI project management tool.

Acciones
16
Triggers
0
Autenticación
OAuth gestionado
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Tool 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

  • textstringObligatorio

    The full comment content, supporting markdown formatting

  • task_idstringObligatorio

    The unique 12-character alphanumeric ID of the task receiving the comment

  • parent_idstring

    Optional ID of a parent comment for creating threaded replies

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Add Task Time TrackingDART_ADD_TASK_TIME_TRACKINGAcción

Tool 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

  • idstringObligatorio

    The task ID (12-character alphanumeric identifier)

  • userstring

    The name or email of the user to attribute the tracked time to. Use null or omit to use the current user

  • startedAtstringObligatorio

    The start timestamp for the tracked time entry in ISO 8601 format (e.g., 2025-12-15T10:00:00Z)

  • finishedAtstringObligatorio

    The 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create DocDART_CREATE_DOCAcción

Tool 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

  • itemobjectObligatorio

    Container for doc creation data including title, optional folder, and optional text content

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create TaskDART_CREATE_TASKAcción

Tool 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

  • itemobjectObligatorio

    Task details wrapped in item object.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete DocDART_DELETE_DOCAcción

Tool 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

  • idstringObligatorio

    Universal, unique identifier for the doc. Must match pattern ^[a-zA-Z0-9]{12}$

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete TaskDART_DELETE_TASKAcción

Tool 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

  • idstringObligatorio

    The universal, unique identifier for the task. Must be 12 alphanumeric characters.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User Space ConfigurationDART_GET_CONFIGAcción

Tool 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get DocDART_GET_DOCAcción

Tool 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

  • idstringObligatorio

    The universal, unique identifier of the document. Must be a 12-character alphanumeric string (pattern: ^[a-zA-Z0-9]{12}$).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get TaskDART_GET_TASKAcción

Tool 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

  • idstringObligatorio

    Universal unique task ID (12 alphanumeric characters)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List CommentsDART_LIST_COMMENTSAcción

Tool 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).

  • idsstring

    Filter by specific comment IDs (comma-separated).

  • textstring

    Filter by comment text content. Searches for text within comments.

  • limitinteger

    Number of results per page for pagination.

  • authorstring

    Filter by comment author name or email.

  • offsetinteger

    Starting index for pagination results.

  • task_idstringObligatorio

    The task identifier to retrieve associated comments. This parameter is required.

  • author_idstring

    Filter by author's unique identifier.

  • parent_idstring

    Filter comments by parent comment identifier to get replies.

  • published_atstring

    Filter by exact publication timestamp (ISO 8601 format).

  • published_at_afterstring

    Filter for comments published after this date (ISO 8601 format).

  • published_at_beforestring

    Filter for comments published before this date (ISO 8601 format).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Help Center ArticlesDART_LIST_HELP_CENTER_ARTICLESAcción

Tool 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

  • querystringObligatorio

    The 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List TasksDART_LIST_TASKSAcción

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

  • idsstring

    Filter by specific task IDs (comma-separated).

  • tagstring

    Filter by tag name.

  • sizeinteger

    Filter by task size or story points.

  • typestring

    Filter by task type name.

  • viewstring

    Filter by view name.

  • limitinteger

    Number of results to return per page for pagination.

  • titlestring

    Filter by task title text content.

  • due_atstring

    Filter by exact due date timestamp (ISO 8601 format).

  • offsetinteger

    The initial index from which to return results for pagination.

  • statusstring

    Filter by task status name.

  • tag_idstring

    Filter by tag unique identifier.

  • type_idstring

    Filter by task type unique identifier.

  • view_idstring

    Filter by view unique identifier.

  • assigneestring

    Filter by assignee name or email.

  • in_trashboolean

    Include or exclude trashed tasks. Set to true to show only trashed tasks, false to exclude them.

  • prioritystring

    Filter by priority level.

  • start_atstring

    Filter by exact start date timestamp (ISO 8601 format).

  • dartboardstring

    Filter by dartboard name.

  • parent_idstring

    Filter by parent task identifier to get subtasks.

  • status_idstring

    Filter by status unique identifier.

  • created_atstring

    Filter by exact creation timestamp (ISO 8601 format).

  • created_bystring

    Filter by creator name or email.

  • updated_atstring

    Filter by exact update timestamp (ISO 8601 format).

  • updated_bystring

    Filter by last updater name or email.

  • assignee_idstring

    Filter by assignee's unique identifier.

  • descriptionstring

    Filter by task description text content.

  • no_defaultsboolean

    Disable default filters applied by the API (default: false).

  • dartboard_idstring

    Filter by dartboard unique identifier.

  • due_at_afterstring

    Filter for tasks due after this date (ISO 8601 format).

  • is_completedboolean

    Filter by completion status. True for completed tasks, false for incomplete tasks.

  • created_by_idstring

    Filter by creator's unique identifier.

  • due_at_beforestring

    Filter for tasks due before this date (ISO 8601 format).

  • updated_by_idstring

    Filter by last updater's unique identifier.

  • start_at_afterstring

    Filter for tasks starting after this date (ISO 8601 format).

  • start_at_beforestring

    Filter for tasks starting before this date (ISO 8601 format).

  • created_at_afterstring

    Filter for tasks created after this date (ISO 8601 format).

  • updated_at_afterstring

    Filter for tasks updated after this date (ISO 8601 format).

  • created_at_beforestring

    Filter for tasks created before this date (ISO 8601 format).

  • updated_at_beforestring

    Filter for tasks updated before this date (ISO 8601 format).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Move TaskDART_MOVE_TASKAcción

Tool 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

  • idstringObligatorio

    The universal, unique identifier of the task to reposition. Must be a 12-character alphanumeric identifier

  • afterTaskIdstring

    Places 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

  • beforeTaskIdstring

    Places 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Retrieve Skill By TitleDART_RETRIEVE_SKILL_BY_TITLEAcción

Tool 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

  • titlestringObligatorio

    The title of the skill to retrieve. Must be an exact match.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update DocDART_UPDATE_DOCAcción

Tool 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

  • itemobjectObligatorio

    Container for doc update data including the document ID and optional title, folder, and text content to update

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update TaskDART_UPDATE_TASKAcción

Tool 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

  • itemobjectObligatorio

    Task details wrapped in item object. Only properties specified will be updated.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not