Answering your first ticket.

Answering your first ticket.

Zoho Desk packs a bunch of features that are expressly there to help you respond to tickets smartly.

The first of these, you've already discovered: Auto-Suggest Articles. Zoho Desk pulls up relevant articles on the ticket's content—so you can save time on frequently asked questions.

Every action that you can perform with respect to a ticket has a corresponding keyboard shortcut. With these, you can optimize the time you spend on each ticket. (And the shortcut to access these shortcuts is Shift + ? ).When you need to quickly consult a colleague, you can tag them in a ticket comment without having to leave this screen. That's like a quick chat, without even leaving your place, and with the full context of the ticket.

With these, you're good to go.

Go on, save the world from bad customer service!



Tab 1
Contact Details
Tab 1
This is tab 1 content
Contact Details
contact details go here
 
    • Related Articles

    • The Royal Alfred Seafarers' Society

      Charity Number: 209776 Address: Weston Acres, Woodmansterne Lane, Banstead, Surrey Postcode: SM7 3HB Phone: 01737 353 763 Website: www.royalalfredseafarers.co.uk Email: enquiries@royalalfred.org.uk Summary: To provide nursing, dementia and respite ...
    • The Marine Society

      Charity Number: 313013 Address: 202 Lambeth Road, London Postcode: SE1 7JW Phone: 0207 654 7029 Website: www.marine-society.org Email: education@ms-sc.org Summary: The Marine Society was the world's first seafarers’ charity. It provides a range of ...
    • The Marine Society (Coming Ashore Project)

      Charity Number: 313013 Contact: Carla Rockson Address: 202 Lambeth Road, London Postcode: SE1 7JW Phone: 0207 654 7029 Website: www.marine-society.org Email: education@ms-sc.org Summary: The Marine Society was the world's first seafarers’ charity. It ...
    • National Maritime Training Centre

      Address: National Maritime Training Centre, North Kent College, Lower Higham Road, Gravesend, Kent Contact: Mrs Marianne Milligan - Short Course Administrator Phone: 01322 629600 Website: ...
    • Alabaré (MN veterans served in conflict)

      Charity Number: 1006504 Contact: 01722 322882 Website: www.alabare.co.uk Email: enquiries@alabare.co.uk Summary: Alabaré has been supporting vulnerable, homeless and marginalised people since 1991. We help them transform their lives, providing ...
    (function () { 'use strict'; // Only run on the KB root page if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return; var CATEGORY_ID = '233149000000358041'; var MAX_WAIT_MS = 10000; var POLL_INTERVAL_MS = 200; var elapsed = 0; function getStore() { if (window.reduxStore) return window.reduxStore; if (window._store) return window._store; var all = document.querySelectorAll('*'); for (var i = 0; i < all.length; i++) { var keys = Object.keys(all[i]); for (var j = 0; j < keys.length; j++) { if (keys[j].indexOf('__reactContainer') === 0) { try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {} } } } return null; } function getPortalId() { var resources = window.performance.getEntriesByType('resource'); for (var i = 0; i < resources.length; i++) { var m = resources[i].name.match(/portalId=([^&]+)/); if (m) return m[1]; } return null; } var timer = setInterval(function () { elapsed += POLL_INTERVAL_MS; if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; } var store = getStore(); if (!store) return; var kb = store.getState().KBUIState; if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return; if (!kb.isNext) { clearInterval(timer); return; } clearInterval(timer); var portalId = getPortalId(); if (!portalId) return; var base = window.location.origin + '/portal/api/kbCategory/' + CATEGORY_ID + '/articles?portalId=' + portalId; Promise.all([ fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }), fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); }) ]).then(function (results) { var sections = Object.values(results[0].data).concat(Object.values(results[1].data)); if (!sections.length) return; store.dispatch({ type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS', data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 } }); }).catch(function () {}); }, POLL_INTERVAL_MS); })();