---
title: "Get tickets"
method: GET
path: "/api/v2/organizations/{orgSlug}/tickets"
tags: ["Tickets"]
---

# Get tickets

`GET /api/v2/organizations/{orgSlug}/tickets`

Retrieve a list of tickets based on provided filters 

 Required scopes: `flex.collaboration.tickets.read`

## Path parameters

- `orgSlug` string, required

## Query parameters

- `$select` string
- `$cursorNext` string
- `$cursorPrev` string
- `$limit` number

## Response `200`

- object
  - `rangeStart` number
  - `rangeEnd` number
  - `cursorNext` string
  - `cursorPrev` string
  - `results` TicketResultDto[]
    - `_id` string — The _id of the item.
    - `type` string — The _id of the ticket options.
    - `severity` string — The _id of the ticket severity.
    - `priority` string — The _id of the ticket priority
    - `company` string — The _id of the company with which the ticket will be associated.
    - `member` string — The _id of the member who has created the ticket.
    - `location` string — The _id of the location with which the ticket is associated.
    - `status` 'open' | 'new' | 'pending' | 'resolved' — The status of the ticket.
    - `assignedTo` string — The _id of the location to whom the ticket is assigned.
    - `resolvedDate` string — The date of the resolution date of the ticket.
    - `attachments` string[] — An array of strings containing the URLs of all images attachments
    - `subject` string — The ticket description.
    - `message` string — The ticket message.
    - `createdAt` string, date-time — The date when the ticket has been created at.
    - `modifiedAt` string, date-time — The date when the ticket has been modified for the last time.

---

[API](https://skmtc.dev/officernd/apis/authentication-api.md) · [All operations](https://skmtc.dev/officernd/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/officernd/authentication-api/revisions/6bcd33dc648e/schema)
