GET
/
v1
/
app
/
issue
{
  "data": [
    {
      "id": "<string>",
      "issue_number": 123,
      "description": "<string>",
      "resource_type": "Thread",
      "type": "NoAnswer",
      "state": "NotReviewed",
      "is_read": true,
      "data": {
        "entity": {
          "id": "<string>",
          "name": "<string>",
          "goal": "<string>",
          "default_member_role": "Viewer",
          "default_role_enabled": true,
          "deadline": "<string>",
          "visibility": "Public",
          "member_count": 123,
          "members": [
            {
              "id": "<string>",
              "role": "Viewer",
              "user": {
                "id": "<string>",
                "org_id": "<string>",
                "account_id": "<string>",
                "profile_picture": "<string>",
                "name": "<string>",
                "email": "<string>",
                "job_position_name": "<string>",
                "job_position_description": "<string>",
                "state": "Active",
                "roles": [
                  "AppGuest"
                ],
                "created_at": "<string>"
              },
              "is_project_member": true
            }
          ],
          "project_context": "<string>",
          "answer_context": "<string>",
          "is_pinned": true
        }
      },
      "created_at": "<string>",
      "updated_at": "<string>",
      "created_by": {
        "id": "<string>",
        "org_id": "<string>",
        "account_id": "<string>",
        "profile_picture": "<string>",
        "name": "<string>",
        "email": "<string>",
        "job_position_name": "<string>",
        "job_position_description": "<string>",
        "state": "Active",
        "roles": [
          "AppGuest"
        ],
        "created_at": "<string>"
      }
    }
  ],
  "next_cursor": "<string>",
  "previous_cursor": "<string>",
  "has_next_page": true,
  "has_previous_page": true,
  "total_count": 123
}

Query Parameters

created_by
string[]
end_date
number
filter_by_text
string
include
enum<string>[]
required
page
number

The page number to retrieve (1-based index)

page_size
number

The number of items per page

page_order
enum<string>

The order of the items on the page (ASC or DESC)

Available options:
ASC,
DESC,
ASC_NULLS_FIRST,
DESC_NULLS_FIRST,
ASC_NULLS_LAST,
DESC_NULLS_LAST
after
string

The cursor to start after for relative pagination

before
string

The cursor to start before for relative pagination

first
number

The number of items to return after the cursor

last
number

The number of items to return before the cursor

total_count
boolean

Whether to return the total count of items

start_date
number
states
enum<string>[]
required
type
enum<string>[]
required

Response

200 - application/json

Returns a paginated list of issues for the actual organization

data
object[]
required
has_next_page
boolean
required
has_previous_page
boolean
required
next_cursor
string
previous_cursor
string
total_count
number