POST
/
api
/
v1
/
issues
/
filter
curl --request POST \
  --url https://app.tegon.ai/api/v1/issues/filter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filters": {},
  "workspaceId": "<string>"
}'
[
  {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "deleted": "2023-11-07T05:31:56Z",
    "title": "<string>",
    "number": 123,
    "description": "<string>",
    "priority": 123,
    "dueDate": "2023-11-07T05:31:56Z",
    "sortOrder": 123,
    "subIssueSortOrder": 123,
    "estimate": 123,
    "sourceMetadata": {},
    "isBidirectional": true,
    "teamId": "<string>",
    "createdById": "<string>",
    "updatedById": "<string>",
    "subscriberIds": [
      "<string>"
    ],
    "assigneeId": "<string>",
    "labelIds": [
      "<string>"
    ],
    "stateId": "<string>",
    "parentId": "<string>",
    "attachments": [
      "<string>"
    ],
    "issueSuggestionId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
filters
object
required
workspaceId
string
required

Response

200
application/json
Successful response
id
string
createdAt
string
updatedAt
string
deleted
string | null
title
string
number
integer
description
string | null
priority
integer | null
dueDate
string | null
sortOrder
integer | null
subIssueSortOrder
integer | null
estimate
integer | null
sourceMetadata
object | null
isBidirectional
boolean | null
teamId
string
createdById
string | null
updatedById
string
subscriberIds
string[]
assigneeId
string | null
labelIds
string[]
stateId
string
parentId
string | null
attachments
string[]
issueSuggestionId
string | null