List

This endpoint returns an array of tickets with activity in the time frame provided.

A ticket is determined as active if the value of at least one of the following JSON keys is in the time frame:

  1. open - The time the ticket was opened.
  2. close - The time the ticket was closed.
  3. lastActivity - The time of the last activity (e.g., ticket state change, message sent/received, ticket field update, etc.).

It is required to supply since and until. The max time frame allowed is one calendar month.

The max number of tickets returned in the response is 100. When there are more than 100 tickets, the response will supply a request URL for the next page. This URL contains the page Query Param. The last page returns an empty paging JSON key. Example:

"paging": {
    "next": "https://{workspace}.glassix.com/api/v1.2/tickets/list?page=ZGJhZDkxNDUtOTQ4ZC00ZjQ0LWE5YzUtNDdjNmE4YmQ5YzQ2OjI="
  }

Use the paging value in the response to get the next page. You can't add other params to the request. Each URL/page Query Param value is valid for 24 hours from the initial request.

Note:

Tickets are returned without their transactions.

Query Params
string

From date and time. Format dd/mm/yyyy hh:mm:ss:ff format UTC time.

string

Until date and time. Format dd/mm/yyyy hh:mm:ss:ff format UTC time.

string

Will show tickets that are of the states supplied. Add a comma (,) between each state for more than one state. If not supplied will show tickets from all states. Allowed states: Open, Closed, Pending, and Snoozed.

string
enum

ASC - will order tickets from newest to oldest opened time.DESC- Will present tickets from oldest to newest opened time.When not supplied, results are automatically in ASC order.

Allowed:
string

Returned in the response when there are more than 100 tickets. Using the param will show the next 100 tickets. When supplied, no other Query Param is allowed.

Responses

Language
Credentials
OAuth2
URL
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json