Skip to content

Tern Bridge captures WhatsApp, Messenger, Instagram and LinkedIn.

How it works
Tern
Support

Support tickets

Open tickets from WhatsApp, calls, email, the app and your own website, each with a response clock. Keep the API keys that let other systems in.

Updated

A ticket is a customer question with a clock on it. Tickets can arrive through five doors: a WhatsApp account or conversation marked as support, a call to a support number, mail to your support address, the New ticket button and the API. Any member of the workspace can open and work tickets.

Read the tickets list

  1. In the sidebar, under Support, open Tickets.
  2. The tiles show Open tickets, SLA breached, At risk and Average first response.
  3. Use the quick chips Mine, SLA breached and At risk, or search by subject, requester or reference.
  4. Press Board for one column per status. List brings you back.
StatusMeaning
OpenWaiting on us
PendingIn progress
Waiting on customerTheir move
ResolvedFixed, not yet closed
ClosedDone

Priorities are Urgent, High, Normal and Low. The SLA column shows On track, At risk (inside the last quarter of the window), SLA breached (past due and still open) or SLA met.

Work a ticket

  1. On the ticket's row open the actions menu.
  2. Under Assign choose Assign to me or a teammate.
  3. Under Status choose Mark pending, Waiting on the contact or Resolve.
  4. When you resolve a ticket, the satisfaction question goes out on the same channel.

Door 1: WhatsApp

  1. Open Settings, then Bridge. Find the Support card.
  2. Switch on the WhatsApp account your customers write to, or type its number under Add an account and press Mark as support.
  3. For one conversation only, open it in the Inbox, press More and choose Mark as support.

Inbound messages captured there open a ticket, or attach to the person's open one. The steps in detail are in WhatsApp Web capture and assisted send.

Door 2: calls

A number becomes a support number through its purpose.

  1. Open Settings, then Channels.
  2. Press Add a channel, or edit the voice number you already have.
  3. Under Purpose choose Support: inbound opens a ticket.
  4. Press Save channel.

From then on a finished inbound call to that number opens a ticket with the transcript on it. A call nobody answered opens a high priority ticket titled "Missed call from" the caller, with a callback task for the team, so it cannot be forgotten.

Door 3: email

Every workspace has its own support address in the form support+yourworkspace@ternup.io, where the last part is your workspace's short name.

  1. Open Support, then Tickets.
  2. Find the address at the top of the page, beside New ticket. Press it to copy it.
  3. In your mail system, forward your support mailbox to that address.
  4. Mail sent to it opens a ticket. Replies you write in the Inbox go out from the same address and stay in the customer's email thread.

Keep attachments small for now: mail over 150 KB is bounced back to the sender.

Door 4: New ticket

Use this for a call you took elsewhere or a walk in.

  1. On the Tickets page press New ticket. The same button is on a lead's page and on an Inbox thread, where the requester is already filled in.
  2. Fill in Subject.
  3. Fill in Email or phone. An existing contact is matched: otherwise one is created, using Name.
  4. Pick a Priority and describe What happened.
  5. Press Open ticket. The first response clock starts now.

Door 5: the API

A web form or another system can open tickets with one request. Owners and admins manage the keys.

  1. In the sidebar open Integrations and press API keys at the top.
  2. Press New key.
  3. Give it a Name that says where it will live, such as "Website contact form". Pick an Expiry: Does not expire, 90 days or One year.
  4. Press Create key.
  5. The dialog Copy your key now shows the key. This is the only time it is shown. Press Copy and store it as a secret on your server, never in a web page.
  6. Press Done.

Then send the ticket from your server:

HTTP
POST https://app.ternup.io/api/public/tickets
Authorization: Bearer tern_yourkey
Content-Type: application/json

{
  "subject": "Cannot log in to the portal",
  "body": "Tried twice this morning.",
  "priority": "normal",
  "requester": { "email": "sam@example.com", "name": "Sam Carter" },
  "tags": ["website"],
  "external_ref": "form-10482"
}
FieldNeededNotes
subjectYesUp to 200 characters
requesterYesAn email or a phone in international form, plus an optional name
bodyNoUp to 4000 characters
priorityNolow, normal, high or urgent. Normal when left out
tagsNoUp to 20
external_refNoYour own id for the request. Makes a retry safe
AnswerMeaning
201The ticket was opened
200A ticket with this external_ref already exists and is returned
401The key is missing or not valid
403The key may not open tickets
422The body did not pass validation. The answer lists what to fix
429Too many requests. Wait the number of seconds in retry-after

A key may send 60 requests a minute. Always send an external_ref, so a request repeated after a timeout answers with the first ticket and does not open a second one.

Revoke a key

  1. Open Integrations, then API keys.
  2. Press Revoke on the key's row and confirm with Revoke key.

Anything still using the key gets a 401 from the next request. This cannot be undone, so create the new key first when you are rotating.

Still stuck? Write to sales@fastflowup.com and a person will answer.