Getting attention on a "pending" ticket (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Getting attention on a "pending" ticket (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Getting attention on a "pending" ticket (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Getting attention on a "pending" ticket

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

Getting attention on a "pending" ticket

Getting attention on a "pending" ticket (14)

jthoms

Community Novice

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-20-201505:02 PM

After support responds to a ticket, but does not fully resolve the issue, I believe the status goes to "pending." When there's a bit more info on an issue or I'd like a bit more information, I've often needed to somehow get the attention of support staff again. In Zendesk, this was done by changing the status back to "open." I've tried this same workflow in ServiceCloud, without much success.

What's the best way to resurface a ticket for a bit of attention from support?

I'm specifically curious about Tier 1, but would imagine the question might apply more broadly than that.

Labels (2)

Labels

  • Labels:
  • Admin

  • Administrator

I also have this question

2Likes

  • All forum topics
  • Previous Topic
  • Next Topic

1 Reply

Getting attention on a "pending" ticket (15)

Getting attention on a "pending" ticket (16)kona

Community Coach

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-20-201505:38 PM

@jthoms​, this is a great question, but should probably get added over in the Ticketing System Transition​ area. That way Deactivated user​ will see your question and be able to respond! Getting attention on a "pending" ticket (17)

1Like

Getting attention on a "pending" ticket (18)

Unanswered Topics

  • Uploading users through csv file

  • QB not retaining questions

  • Compose Message

  • Canvas resubmit button

  • Attendance (Roll Call) Combine all sections

View All

Latest Topics

  • Uploading users through csv file

  • QB not retaining questions

  • Compose Message

  • rubric from another course

  • Delayed Announcements Showing Created Date

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructure Community, you need to sign up or log in:

Sign In

Getting attention on a "pending" ticket (2024)

FAQs

What is the best excuse to appeal a speeding ticket? ›

Most successful excuses to avoid speeding tickets
  • I didn't know I was speeding: 26%
  • Medical emergency: 25%
  • Everyone else was going the same speed: 22%
  • Late for work: 21%
  • I had to use the bathroom: 20%
  • Late for an interview: 16%
  • Late to pick up or drop my child off: 15%
  • I didn't see the sign: 14%

How to answer support tickets? ›

How to Answer Support Tickets
  1. Understand the Issue: Begin by thoroughly reading the ticket. ...
  2. Empathy and Assurance: Start your response with empathy. ...
  3. Provide Clear Solutions: Offer step-by-step solutions in a clear, concise manner. ...
  4. Follow-Up: After providing a solution, follow up to ensure the issue is resolved.
Feb 4, 2024

What does ticket pending mean on Ticketmaster? ›

When a user is in the process of purchasing tickets, they are put in to a "pending" status for 30 minutes until completion, so that no one else can buy them. If the user does not purchase them, then the transaction is cancelled.

Can I just pay my ticket and not go to court in Georgia? ›

Most citations can be paid prior to the court date, indicated near the bottom of the citation without having to appear in court.

What is the best defence for a speeding ticket? ›

Common defenses that could help you fight the charges include:
  • Necessity. If you had to speed to avoid a serious accident, you may be able to argue that you had no choice but to speed. ...
  • No posted speed limit. ...
  • Not speeding. ...
  • Radar gun inaccuracy. ...
  • Speedometer calibration. ...
  • GPS. ...
  • Not the person driving.

How do I write a letter to reduce a speeding ticket? ›

Your argument should be clear, concise, and persuasive. State the reasons why you believe you should not have been charged and present any evidence that supports your case. Use specific examples and be as detailed as possible.

How do I ask to close a ticket? ›

Best Practices for Closing Support Ticket Emails
  1. Be clear and concise: Ensure the email is easy to read and understand.
  2. Personalize the email: Use the customer's name and reference the specific issue.
  3. Express gratitude: Thank the customer for their patience and cooperation.
Jun 5, 2024

How do you prioritize support tickets? ›

Establish a prioritization framework based on urgency, age of ticket, and complexity. Some issues require immediate attention, as they cause significant disruptions to the customer. Although all tickets are important and need to be resolved promptly, urgent issues should be given priority over low-priority ones.

How do you write a good support ticket? ›

How to Write the Perfect Support Ticket
  1. Don't panic.
  2. Write a concise subject line.
  3. Use the correct category.
  4. Give a full description of your problem.
  5. Add a screenshot or screen recording.
  6. Keep your issue in support.
  7. It's fine to reach out after 24 hours.
  8. Don't create more than 1 ticket for the same issue.
Jul 23, 2024

Why does it say ticket pending? ›

What does a pending ticket mean? A pending ticket is a ticket that the agent takes more time to resolve or needs additional information to resolve a customer's problem. This is most often the second stage in the ticket's life cycle.

What does it mean when a ticket is pending? ›

"Pending tickets" are tickets within orders that are undergoing the checkout process. They might be in the middle of purchasing, or perhaps they've forgotten to finish.

What is the difference between open and pending ticket? ›

Open tickets are often handled by the agent themselves, whereas Pending tickets require supervisor decision-making or additional details from a customer.

Can I just pay my ticket and not go to court NJ? ›

You can pay your fine at the court's payment window, by mail or by going to NJMCdirect.com. If you pay without going to court, you will be pleading guilty and giving up your right to a lawyer and your right to a trial. Court appearances are always required in criminal matters.

Can I just pay my ticket and not go to court Tennessee? ›

Option 1 - Pay Your Ticket

If your ticket doesn't require you to appear in court and you don't feel like fighting the charges, you can pay your fine and move on with your life. In Tennessee, you may have one of three payment options: online, by mail or in person.

How much is a following too closely ticket in Georgia? ›

Code Section List - Revised March 2024
OffenseCode Sec.Fine
Offense FAILURE TO YIELD TO EMERGENCY VEHICLECode Sec. 40-6-74Fine $125.00
Offense FOLLOWING TOO CLOSELYCode Sec. 40-6-49Fine $125.00
Offense IMPROPER BACKINGCode Sec. 40-6-240Fine $125.00
Offense IMPROPER DISPLAY OF TAGCode Sec. 40-2-41Fine $125.00
81 more rows

Is it worth fighting a speeding ticket in California? ›

Driving records constitute a part of criminal history information in California; therefore, points on a driving record may negatively reflect the individual's credibility. By fighting a traffic ticket, offenders stand the chance of overturning a traffic conviction on their record.

Is one of the most frequently cited reasons for speeding? ›

What Drives Speeding? Traffic congestion is one of the most frequently mentioned contributing factors to aggressive driving, such as speeding.

How to get a speeding ticket dismissed in California? ›

Six Ways to Resolve a California Traffic Ticket
  1. Hire an Attorney. ...
  2. Appear in Court to Request a Trial. ...
  3. Request a Trial by Written Declaration. ...
  4. Plead Guilty by Paying the Citation. ...
  5. Plead Guilty by Paying the Citation in Installments. ...
  6. Plead Guilty by Requesting Community Service.

How can I get ticket forgiveness in California? ›

You can use a form to make your request

Fill out Form TR-320, Can't Afford to Pay Fine: Traffic and Other Infractions. Mail or take the form to the court. In some courts, you may be able to file this online, called e-filing. A judge will review your request and make a decision.

Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 5945

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.