{ "name": "UpdateExistingProblemTask", "fully_qualified_name": "FreshserviceApi.UpdateExistingProblemTask@0.2.0", "description": "Updates a task on an existing problem in Freshservice.\n\nUse this tool to modify details of a task associated with a specific problem in Freshservice. Provide the problem and task identifiers to proceed with the update.", "toolkit": { "name": "ArcadeFreshserviceApi", "description": null, "version": "0.2.0" }, "input": { "parameters": [ { "name": "problem_identifier", "required": true, "description": "The unique identifier of the problem to which the task belongs.", "value_schema": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of problem" }, "inferrable": true, "http_endpoint_parameter_name": "problem_id" }, { "name": "task_identifier", "required": true, "description": "The unique integer ID of the task to be updated.", "value_schema": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the task" }, "inferrable": true, "http_endpoint_parameter_name": "task_id" }, { "name": "task_details_to_update", "required": true, "description": "JSON object containing details of the task to update (e.g., title, status, due date, etc.).", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "created_by": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the user who created the task" }, "agent_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Id of the agent to whom the task is assigned" }, "id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the task" }, "status": { "val_type": "integer", "inner_val_type": null, "enum": [ "1", "2", "3", "4" ], "properties": null, "inner_properties": null, "description": "Status of the task, 1-Open, 2-In Progress, 3-Completed" }, "parent_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the parent entity to which the task belongs" }, "parent_type": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Type of the parent entity - [Ticket, Problem, Change, Release, Project]" }, "due_date": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Due date of the task" }, "notify_before": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Time in seconds before which notification is sent prior to due date" }, "title": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Title of the task" }, "description": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Description of the task" }, "created_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was created" }, "updated_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was updated" }, "closed_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was closed" }, "group_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the group to which the task is assigned" }, "start_date": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task is started" } }, "inner_properties": null, "description": "tassk details that needs to be updated" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" } ] }, "output": { "description": "Response from the API endpoint 'update-problem-task'.", "available_modes": [ "value", "error", "null" ], "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null } }, "requirements": { "authorization": null, "secrets": [ { "key": "FRESHSERVICE_SUBDOMAIN" }, { "key": "FRESHSERVICE_API_KEY" } ], "metadata": null }, "deprecation_message": null, "metadata": { "object_type": "api_wrapper_tool", "version": "1.1.0", "description": "Tools that enable LLMs to interact directly with the Freshservice API." }, "http_endpoint": { "metadata": { "object_type": "http_endpoint", "version": "1.2.0", "description": "" }, "url": "https://{freshservice_subdomain}.freshservice.com/api/v2/problems/{problem_id}/tasks/{task_id}", "http_method": "PUT", "headers": {}, "parameters": [ { "name": "problem_id", "tool_parameter_name": "problem_identifier", "description": "ID of problem", "value_schema": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of problem" }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "task_id", "tool_parameter_name": "task_identifier", "description": "ID of the task", "value_schema": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the task" }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "requestBody", "tool_parameter_name": "task_details_to_update", "description": "tassk details that needs to be updated", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "created_by": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the user who created the task" }, "agent_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Id of the agent to whom the task is assigned" }, "id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the task" }, "status": { "val_type": "integer", "inner_val_type": null, "enum": [ "1", "2", "3", "4" ], "properties": null, "inner_properties": null, "description": "Status of the task, 1-Open, 2-In Progress, 3-Completed" }, "parent_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the parent entity to which the task belongs" }, "parent_type": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Type of the parent entity - [Ticket, Problem, Change, Release, Project]" }, "due_date": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Due date of the task" }, "notify_before": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Time in seconds before which notification is sent prior to due date" }, "title": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Title of the task" }, "description": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Description of the task" }, "created_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was created" }, "updated_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was updated" }, "closed_at": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task was closed" }, "group_id": { "val_type": "integer", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Unique ID of the group to which the task is assigned" }, "start_date": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Timestamp at which the task is started" } }, "inner_properties": null, "description": "tassk details that needs to be updated" }, "accepted_as": "body", "required": true, "deprecated": false, "default": null, "documentation_urls": [] } ], "documentation_urls": [], "secrets": [ { "arcade_key": "FRESHSERVICE_SUBDOMAIN", "parameter_name": "freshservice_subdomain", "accepted_as": "path", "formatted_value": null, "description": "", "is_auth_token": false }, { "arcade_key": "FRESHSERVICE_API_KEY", "parameter_name": "username", "accepted_as": "basic_auth_username", "formatted_value": null, "description": "", "is_auth_token": false } ], "request_body_spec": null, "use_request_body_schema_mode": false, "validate_request_body_schema": false } }