NAiOS IconNAiOS Logo
Volver al catálogo

Bugherd

bugherd

BugHerd is a visual feedback and bug tracking tool for websites, allowing clients and teams to report issues directly on live sites.

Acciones
25
Triggers
0
Autenticación
OAuth gestionado
No
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 (25)

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 Guest to ProjectBUGHERD_ADD_GUEST_TO_PROJECTAcción

Tool to add a guest (client) to a project. use when you want to add an existing client by id or invite a new client by email.

Parámetros de entrada

  • emailanyemail

    Email address to invite a new guest (client). Mutually exclusive with 'user_id'.

  • user_idinteger

    ID of an existing guest (client) to add. Mutually exclusive with 'email'.

  • project_idintegerObligatorio

    ID of the project to add the guest to

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 Member to ProjectBUGHERD_ADD_MEMBER_TO_PROJECTAcción

Tool to add a member to a project in bugherd. use when you need to add an existing user to a specific project.

Parámetros de entrada

  • user_idintegerObligatorio

    The ID of the existing user to add to the project.

  • project_idintegerObligatorio

    The ID of the project to which the member will be added.

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

Tool to add a new attachment to a task using an existing url. use when you have project and task ids and the external file url ready.

Parámetros de entrada

  • urlstringObligatorio

    Public URL of the file to attach.

  • task_idintegerObligatorio

    Unique identifier of the task to which the attachment will be added.

  • file_namestringObligatorio

    Name of the attachment file (e.g., 'resolution.gif').

  • project_idintegerObligatorio

    Unique identifier of the project containing the task.

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

Tool to create a new column in a project. use when you need to add a custom workflow column after identifying the project id.

Parámetros de entrada

  • namestringObligatorio

    Name of the new custom column.

  • positioninteger

    Zero-based position of the new column in the project's column list; defaults to appending if omitted.

  • project_idintegerObligatorio

    ID of the project to which the column will be added.

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

Tool to add a new comment to a task. use when you need to record discussion or feedback on an existing task.

Parámetros de entrada

  • textstringObligatorio

    Content of the comment to add.

  • emailanyemail

    Email address of the commenter. Used if 'user_id' is not set.

  • task_idintegerObligatorio

    ID of the task to which the comment will be added.

  • user_idinteger

    ID of an existing user adding the comment. Mutually exclusive with 'email'.

  • project_idintegerObligatorio

    ID of the project containing the task.

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

Tool to create a new project. use when you need to initialize a project after gathering its name and url. example: "create a new project named 'my website' with url 'http://www.example.com'."

Parámetros de entrada

  • projectobjectObligatorio

    Project fields for creating a new BugHerd project.

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

Tool to add a new task in a project. use when you have the project id and full task details ready.

Parámetros de entrada

  • statusstring

    Status or column for the task. Use one of the default statuses ('backlog','todo','doing','done','closed') or for custom columns pass the column name. Omit or set to null to send to the Feedback panel.

  • prioritystringenum

    Priority of the task. Defaults to 'not set' if omitted.

    not setcriticalimportantnormalminor
  • tag_namesstring[]

    List of tag strings to associate with the new task.

  • project_idintegerObligatorio

    ID of the project to which the task will be added.

  • descriptionstringObligatorio

    Text describing the task or bug to be logged.

  • external_idstring

    API-only field for correlating with external systems. Cannot be set from the BugHerd UI.

  • requester_idinteger

    ID of an existing requester user. Mutually exclusive with 'requester_email'.

  • assigned_to_idinteger

    ID of a project member to assign this task to. Mutually exclusive with 'assigned_to_email'.

  • requester_emailanyemail

    Email address of the requester. Used if 'requester_id' is not set.

  • assigned_to_emailanyemail

    Email of a project member to assign this task to. Must correspond to an existing member in the given project.

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

Tool to create a new webhook for real-time event notifications. use when you need to configure a callback endpoint for task or comment events. example: "create a webhook for 'task create' events to be sent to 'https://example.com/webhook'."

Parámetros de entrada

  • eventstringObligatorioenum

    Event that triggers the webhook. One of 'task_create', 'task_update', 'comment', or 'task_destroy'.

    task_createtask_updatecommenttask_destroy
  • project_idinteger

    ID of the project to apply the webhook to. If omitted, applies to all projects.

  • target_urlanyObligatoriouri

    URL to which webhook payloads will be delivered.

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

Tool to delete a project. use when you need to permanently remove a project and its associated data. this action cannot be undone, so confirm the project id before calling.

Parámetros de entrada

  • project_idintegerObligatorio

    The ID of the project to delete.

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

Tool to list all active projects in your bugherd account. use when you need to retrieve the active projects list (e.g., for syncing or reporting).

Parámetros de entrada

  • pageinteger

    Page number for pagination (1-based). BugHerd returns up to 100 records per page; omit to fetch the first page.

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

Tool to list all attachments for a task. use when you need to retrieve file attachments after fetching task details.

Parámetros de entrada

  • pageinteger

    Page number for pagination (each page returns up to 100 attachments).

  • task_idintegerObligatorio

    ID of the task to list attachments for.

  • project_idintegerObligatorio

    ID of the project containing the task.

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

Tool to list all columns for a project. use when you need the full set of default and custom columns for a project.

Parámetros de entrada

  • pageinteger

    Page number for pagination (each page returns up to 100 columns).

  • project_idintegerObligatorio

    ID of the project to list columns for.

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

Tool to list all projects in your account. use after setting up valid api credentials.

Parámetros de entrada

  • pageinteger

    Page number for pagination (each page returns up to 100 projects).

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

Tool to list all users in your account. use after authenticating to fetch the current user roster. supports pagination via the `page` parameter.

Parámetros de entrada

  • pageinteger

    Page number (1-based) to retrieve.

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

Tool to list all installed webhooks. use when you need to audit or verify existing webhooks after setup.

Parámetros de entrada

  • pageinteger

    Page number for pagination (each page returns up to 100 webhooks).

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

Show AttachmentBUGHERD_SHOW_ATTACHMENTAcción

Tool to retrieve details of a specific attachment. use after you have project id, task id, and attachment id to get filename, url, and timestamps.

Parámetros de entrada

  • task_idintegerObligatorio

    Unique identifier of the task containing the attachment.

  • project_idintegerObligatorio

    Unique identifier of the project containing the task.

  • attachment_idintegerObligatorio

    Unique identifier of the attachment to retrieve.

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

Show ColumnBUGHERD_SHOW_COLUMNAcción

Tool to show details of a specific column. use when you need metadata for a particular column within a project.

Parámetros de entrada

  • column_idintegerObligatorio

    Unique identifier of the column to retrieve

  • project_idintegerObligatorio

    ID of the project containing the column

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

Show OrganizationBUGHERD_SHOW_ORGANIZATIONAcción

Tool to retrieve your bugherd organization details. use after authenticating to fetch account metadata.

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

Show ProjectBUGHERD_SHOW_PROJECTAcción

Tool to show details for a specific project. use when you have the project id and need to retrieve its metadata.

Parámetros de entrada

  • project_idintegerObligatorio

    Unique identifier of the project to retrieve

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

Show User ProjectsBUGHERD_SHOW_USER_PROJECTSAcción

Tool to list all projects a specific user has access to. use after obtaining the user's id.

Parámetros de entrada

  • user_idintegerObligatorio

    The unique ID of the user whose accessible projects you want to list.

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

Show User TasksBUGHERD_SHOW_USER_TASKSAcción

Tool to list tasks created or assigned to a specific user. use when you have a user's id and need their tasks. example: list tasks for user 123.

Parámetros de entrada

  • pageinteger

    Pagination page number (each page returns up to 100 tasks).

  • user_idintegerObligatorio

    Globally unique ID of the user whose tasks to list.

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

Tool to update a column in a project. use when you have the project and column ids and need to rename a column. use after confirming the correct ids.

Parámetros de entrada

  • columnobjectObligatorio

    Column fields to update

  • column_idintegerObligatorio

    ID of the column to update

  • project_idintegerObligatorio

    ID of the project containing the column

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

Tool to update settings for an existing project. use when you have the project id and need to change its configuration.

Parámetros de entrada

  • projectobjectObligatorio

    Project fields for updating an existing BugHerd project.

  • project_idintegerObligatorio

    Unique identifier of the project 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 TaskBUGHERD_UPDATE_TASKAcción

Tool to update a task in a project. use after confirming the project and task ids.

Parámetros de entrada

  • taskobjectObligatorio

    Fields to update for the task

  • task_idintegerObligatorio

    ID of the task to update

  • project_idintegerObligatorio

    ID of the project containing the task

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

Upload AttachmentBUGHERD_UPLOAD_ATTACHMENTAcción

Tool to upload a new attachment and add it to a specific task. use when you have binary file content ready and need to attach it to a bugherd task.

Parámetros de entrada

  • task_idintegerObligatorio

    ID of the task to attach the file to.

  • file_namestringObligatorio

    Name of the attachment file including extension.

  • project_idintegerObligatorio

    ID of the project containing the task.

  • file_contentstringObligatoriobinary

    Raw binary content of the file to be uploaded.

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