TANSS Tickets icon

TANSS Tickets

Verwaltet Ticket-Operationen in der TANSS API

Overview

The "TANSS Tickets" node manages ticket operations via the TANSS API. It supports creating, updating, deleting, retrieving, searching, commenting on, and merging tickets within the TANSS ticketing system.

This node is beneficial in scenarios where you want to automate ticket management workflows, such as:

  • Automatically creating tickets from incoming requests or alerts.
  • Adding comments to existing tickets based on external events.
  • Searching for tickets matching specific criteria to trigger further actions.
  • Merging duplicate tickets or deleting obsolete ones programmatically.
  • Retrieving ticket details or history for reporting or auditing purposes.

For example, a support team could use this node to automatically create tickets when a customer submits a form, update ticket statuses based on internal processes, or merge related tickets to keep the system organized.

Properties

Name Meaning
API Token API token obtained from TANSS authentication, used to authorize API requests.
Ticket-ID The ID of the ticket to operate on (required for operations like delete, update, comment).
Target Ticket ID ID of the target ticket for migrating or merging entities (used in delete and merge operations).

Operation: Ticket löschen (Delete Ticket)

  • API Token: Required API token for authentication.
  • Ticket-ID: The ID of the ticket to be deleted.
  • Target Ticket ID: Optional ID of another ticket to which entities should be migrated during deletion.

Output

The node outputs JSON data representing the response from the TANSS API for the performed operation. The structure varies depending on the operation but generally includes ticket details, confirmation of deletion, or error messages.

No binary data output is produced by this node.

Dependencies

  • Requires an active TANSS API endpoint URL configured in credentials.
  • Requires an API token credential for authenticating requests to the TANSS API.
  • The node uses HTTP methods (GET, POST, PUT, DELETE) to interact with the TANSS backend API.

Troubleshooting

  • No credentials returned!
    This error occurs if the node cannot retrieve the required API credentials. Ensure that the API token and base URL are correctly configured in the node's credentials.

  • Keine Felder für die Ticket-Erstellung angegeben. (No fields specified for ticket creation)
    When creating a ticket, at least one field must be provided. Make sure to fill in the necessary ticket details.

  • Keine Felder zum Aktualisieren angegeben. (No fields specified for update)
    When updating a ticket, specify at least one field to update.

  • Die Operation "XYZ" wird nicht erkannt. (Operation not recognized)
    Indicates an unsupported or misspelled operation name. Verify the selected operation.

  • Fehler beim Ausführen von [operation]: [error message]
    General error during API request execution. Check network connectivity, API token validity, and input parameters.

Links and References

  • TANSS API Documentation (not publicly linked here; refer to your organization's internal resources)
  • n8n Documentation: Creating Custom Nodes
  • REST API Concepts: HTTP Methods

Discussion