Autotask icon

Autotask

Consume Autotask REST API

Actions389

Overview

This node allows users to update an existing ticket in the Autotask system by specifying the ticket's unique ID and the fields to update. It is useful for automating ticket management workflows, such as modifying ticket status, priority, or other attributes based on external triggers or data. For example, a user can update a ticket's status to 'In Progress' when a related event occurs or add notes to a ticket programmatically.

Properties

Name Meaning
Ticket ID The unique identifier of the ticket to update. This is required to specify which ticket the update operation will apply to.
Fields A resource mapper input that defines which fields of the ticket should be updated and their new values. It supports defining fields manually or using auto-mapping features to map data dynamically.

Output

JSON

  • id - The unique identifier of the updated ticket.
  • fields - An object containing the updated fields and their new values.
  • status - The current status of the ticket after the update.
  • priority - The priority level of the ticket after the update.
  • updatedAt - Timestamp indicating when the ticket was last updated.

Dependencies

  • Requires an API key credential for authenticating with the Autotask REST API.

Troubleshooting

  • If the Ticket ID is missing or invalid, the node will throw an error indicating that the ticket could not be found. Ensure the ID is correct and the ticket exists.
  • If required fields for the update are missing or incorrectly mapped, the API may reject the request. Verify the field mappings and data types.
  • Authentication errors may occur if the API key credential is invalid or expired. Check and update the credentials as needed.
  • Network or API rate limit issues can cause failures. Retry after some time or check API usage limits.

Discussion