API: how to list tickets in a certain overview?

I found the (still undocumented :)) /ticket_overviews API endpoint. It returns the list with a summary of information:

[
  {
    "count": 1,
    "link": "all_open",
    "name": "Open",
    "prio": 1030
  },
  {
    "count": 0,
    "link": "all_pending_reached",
    "name": "Pending reached",
    "prio": 1040
  }

But how can I list/search the tickets associated to one of that, via API? I suspect the link param has something to do with that, but cannot figure out. I see it’s used in the WebUI endpoints, but I cannot find how to use it via API.

Thanks

Sorry for the wait.
You’ll love this one… :wink:

?view={link}

Your API-Call, for default “all unassigned” Overview will look like this:

/api/v1/ticket_overviews?view=all_unassigned

Be warned, this returns more than just ticket data… :smiley:

1 Like

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.