Ticket Management

In a Mint Service Desk Cloud a "Ticket" is a record or an entry created to track a specific request, incident, or issue reported by a Customer. The Admin panel of a service desk system provides administrators with the tools and functionalities to manage these tickets effectively.

In the panel you have the ability to search for tickets by the following options:

  • Queues
  • Queue Permissions
  • Type
  • Type Permissions
  • Statuses
  • Priorities
  • Ticket number format

Still have questions?

Can’t find the answer you’re looking for? Please chat to our friendly team.
Contact us
window.addEventListener('DOMContentLoaded', () => { if (window.scrollY > 0) { $('#navi').addClass('nav_scrolled'); $('#logoMint').addClass('nav_scrolled'); } document.addEventListener("scroll", () => { if (window.scrollY > 0) { $('#navi').addClass('nav_scrolled'); $('#logoMint').addClass('nav_scrolled'); } else { $('#navi').removeClass('nav_scrolled'); $('#logoMint').removeClass('nav_scrolled'); } }) // Pop-Up settings // const delay = 2; const popupId = "pop-up-wrapper"; const closeElements = [ document.getElementById('close-popup-link'), document.getElementById('close-popup-cross') ]; // for (const element of closeElements) { document.getElementById('close-popup-cross').addEventListener("click", () => { // Cookies.set('popup', true, { expires: 1 }); document.getElementById(popupId).style.display = "none"; }); // } document.getElementById('showModal').addEventListener("click", () => { document.getElementById(popupId).style.display = "flex"; }); // if (!Cookies.get('popup')) { // setTimeout(function() { // document.getElementById(popupId).style.display = "flex"; // }, delay*1000); // } });