Bugherd
bugherdBugHerd is a visual feedback and bug tracking tool for websites, allowing clients and teams to report issues directly on live sites.
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ónTool 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.
BUGHERD_ADD_GUEST_TO_PROJECTAcciónTool 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
emailanyemailEmail address to invite a new guest (client). Mutually exclusive with 'user_id'.
user_idintegerID of an existing guest (client) to add. Mutually exclusive with 'email'.
project_idintegerObligatorioID of the project to add the guest to
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 Member to ProjectBUGHERD_ADD_MEMBER_TO_PROJECTAcciónTool to add a member to a project in bugherd. use when you need to add an existing user to a specific project.
BUGHERD_ADD_MEMBER_TO_PROJECTAcciónTool 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_idintegerObligatorioThe ID of the existing user to add to the project.
project_idintegerObligatorioThe ID of the project to which the member will be added.
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 AttachmentBUGHERD_CREATE_ATTACHMENTAcciónTool 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.
BUGHERD_CREATE_ATTACHMENTAcciónTool 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
urlstringObligatorioPublic URL of the file to attach.
task_idintegerObligatorioUnique identifier of the task to which the attachment will be added.
file_namestringObligatorioName of the attachment file (e.g., 'resolution.gif').
project_idintegerObligatorioUnique identifier of the project containing the task.
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 ColumnBUGHERD_CREATE_COLUMNAcciónTool to create a new column in a project. use when you need to add a custom workflow column after identifying the project id.
BUGHERD_CREATE_COLUMNAcciónTool 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
namestringObligatorioName of the new custom column.
positionintegerZero-based position of the new column in the project's column list; defaults to appending if omitted.
project_idintegerObligatorioID of the project to which the column will be added.
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 CommentBUGHERD_CREATE_COMMENTAcciónTool to add a new comment to a task. use when you need to record discussion or feedback on an existing task.
BUGHERD_CREATE_COMMENTAcciónTool 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
textstringObligatorioContent of the comment to add.
emailanyemailEmail address of the commenter. Used if 'user_id' is not set.
task_idintegerObligatorioID of the task to which the comment will be added.
user_idintegerID of an existing user adding the comment. Mutually exclusive with 'email'.
project_idintegerObligatorioID of the project containing the task.
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 ProjectBUGHERD_CREATE_PROJECTAcciónTool 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'."
BUGHERD_CREATE_PROJECTAcciónTool 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
projectobjectObligatorioProject fields for creating a new BugHerd project.
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 TaskBUGHERD_CREATE_TASKAcciónTool to add a new task in a project. use when you have the project id and full task details ready.
BUGHERD_CREATE_TASKAcciónTool to add a new task in a project. use when you have the project id and full task details ready.
Parámetros de entrada
statusstringStatus 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.
prioritystringenumPriority of the task. Defaults to 'not set' if omitted.
not setcriticalimportantnormalminortag_namesstring[]List of tag strings to associate with the new task.
project_idintegerObligatorioID of the project to which the task will be added.
descriptionstringObligatorioText describing the task or bug to be logged.
external_idstringAPI-only field for correlating with external systems. Cannot be set from the BugHerd UI.
requester_idintegerID of an existing requester user. Mutually exclusive with 'requester_email'.
assigned_to_idintegerID of a project member to assign this task to. Mutually exclusive with 'assigned_to_email'.
requester_emailanyemailEmail address of the requester. Used if 'requester_id' is not set.
assigned_to_emailanyemailEmail of a project member to assign this task to. Must correspond to an existing member in the given project.
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 WebhookBUGHERD_CREATE_WEBHOOKAcciónTool 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'."
BUGHERD_CREATE_WEBHOOKAcciónTool 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
eventstringObligatorioenumEvent that triggers the webhook. One of 'task_create', 'task_update', 'comment', or 'task_destroy'.
task_createtask_updatecommenttask_destroyproject_idintegerID of the project to apply the webhook to. If omitted, applies to all projects.
target_urlanyObligatoriouriURL to which webhook payloads will be delivered.
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 ProjectBUGHERD_DELETE_PROJECTAcciónTool 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.
BUGHERD_DELETE_PROJECTAcciónTool 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_idintegerObligatorioThe ID of the project to delete.
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 Active ProjectsBUGHERD_LIST_ACTIVE_PROJECTSAcciónTool 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).
BUGHERD_LIST_ACTIVE_PROJECTSAcciónTool 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
pageintegerPage number for pagination (1-based). BugHerd returns up to 100 records per page; omit to fetch the first page.
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 AttachmentsBUGHERD_LIST_ATTACHMENTSAcciónTool to list all attachments for a task. use when you need to retrieve file attachments after fetching task details.
BUGHERD_LIST_ATTACHMENTSAcciónTool to list all attachments for a task. use when you need to retrieve file attachments after fetching task details.
Parámetros de entrada
pageintegerPage number for pagination (each page returns up to 100 attachments).
task_idintegerObligatorioID of the task to list attachments for.
project_idintegerObligatorioID of the project containing the task.
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 ColumnsBUGHERD_LIST_COLUMNSAcciónTool to list all columns for a project. use when you need the full set of default and custom columns for a project.
BUGHERD_LIST_COLUMNSAcciónTool 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
pageintegerPage number for pagination (each page returns up to 100 columns).
project_idintegerObligatorioID of the project to list columns for.
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 ProjectsBUGHERD_LIST_PROJECTSAcciónTool to list all projects in your account. use after setting up valid api credentials.
BUGHERD_LIST_PROJECTSAcciónTool to list all projects in your account. use after setting up valid api credentials.
Parámetros de entrada
pageintegerPage number for pagination (each page returns up to 100 projects).
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 UsersBUGHERD_LIST_USERSAcciónTool to list all users in your account. use after authenticating to fetch the current user roster. supports pagination via the `page` parameter.
BUGHERD_LIST_USERSAcciónTool 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
pageintegerPage number (1-based) to retrieve.
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 WebhooksBUGHERD_LIST_WEBHOOKSAcciónTool to list all installed webhooks. use when you need to audit or verify existing webhooks after setup.
BUGHERD_LIST_WEBHOOKSAcciónTool to list all installed webhooks. use when you need to audit or verify existing webhooks after setup.
Parámetros de entrada
pageintegerPage number for pagination (each page returns up to 100 webhooks).
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
Show AttachmentBUGHERD_SHOW_ATTACHMENTAcciónTool to retrieve details of a specific attachment. use after you have project id, task id, and attachment id to get filename, url, and timestamps.
BUGHERD_SHOW_ATTACHMENTAcciónTool 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_idintegerObligatorioUnique identifier of the task containing the attachment.
project_idintegerObligatorioUnique identifier of the project containing the task.
attachment_idintegerObligatorioUnique identifier of the attachment to retrieve.
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
Show ColumnBUGHERD_SHOW_COLUMNAcciónTool to show details of a specific column. use when you need metadata for a particular column within a project.
BUGHERD_SHOW_COLUMNAcciónTool to show details of a specific column. use when you need metadata for a particular column within a project.
Parámetros de entrada
column_idintegerObligatorioUnique identifier of the column to retrieve
project_idintegerObligatorioID of the project containing the column
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
Show OrganizationBUGHERD_SHOW_ORGANIZATIONAcciónTool to retrieve your bugherd organization details. use after authenticating to fetch account metadata.
BUGHERD_SHOW_ORGANIZATIONAcciónTool to retrieve your bugherd organization details. use after authenticating to fetch account metadata.
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
Show ProjectBUGHERD_SHOW_PROJECTAcciónTool to show details for a specific project. use when you have the project id and need to retrieve its metadata.
BUGHERD_SHOW_PROJECTAcciónTool 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_idintegerObligatorioUnique identifier of the project to retrieve
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
Show User ProjectsBUGHERD_SHOW_USER_PROJECTSAcciónTool to list all projects a specific user has access to. use after obtaining the user's id.
BUGHERD_SHOW_USER_PROJECTSAcciónTool to list all projects a specific user has access to. use after obtaining the user's id.
Parámetros de entrada
user_idintegerObligatorioThe unique ID of the user whose accessible projects you want to list.
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
Show User TasksBUGHERD_SHOW_USER_TASKSAcciónTool 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.
BUGHERD_SHOW_USER_TASKSAcciónTool 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
pageintegerPagination page number (each page returns up to 100 tasks).
user_idintegerObligatorioGlobally unique ID of the user whose tasks to list.
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 ColumnBUGHERD_UPDATE_COLUMNAcciónTool 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.
BUGHERD_UPDATE_COLUMNAcciónTool 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
columnobjectObligatorioColumn fields to update
column_idintegerObligatorioID of the column to update
project_idintegerObligatorioID of the project containing the column
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 ProjectBUGHERD_UPDATE_PROJECTAcciónTool to update settings for an existing project. use when you have the project id and need to change its configuration.
BUGHERD_UPDATE_PROJECTAcciónTool to update settings for an existing project. use when you have the project id and need to change its configuration.
Parámetros de entrada
projectobjectObligatorioProject fields for updating an existing BugHerd project.
project_idintegerObligatorioUnique identifier of the project 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 TaskBUGHERD_UPDATE_TASKAcciónTool to update a task in a project. use after confirming the project and task ids.
BUGHERD_UPDATE_TASKAcciónTool to update a task in a project. use after confirming the project and task ids.
Parámetros de entrada
taskobjectObligatorioFields to update for the task
task_idintegerObligatorioID of the task to update
project_idintegerObligatorioID of the project containing the task
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
Upload AttachmentBUGHERD_UPLOAD_ATTACHMENTAcciónTool 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.
BUGHERD_UPLOAD_ATTACHMENTAcciónTool 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_idintegerObligatorioID of the task to attach the file to.
file_namestringObligatorioName of the attachment file including extension.
project_idintegerObligatorioID of the project containing the task.
file_contentstringObligatoriobinaryRaw binary content of the file to be uploaded.
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