Skip to main content
GET
/
itsm
/
passthrough
/
tickets
/
search
Search Tickets (Passthrough)
curl --request GET \
  --url https://api.leen.dev/v1/itsm/passthrough/tickets/search \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "items": [
    {
      "vendor_id": "<string>",
      "summary": "<string>",
      "status": "<string>",
      "issue_type_id": "<string>",
      "issue_type_name": "<string>",
      "priority": "<string>",
      "assignee_vendor_id": "<string>",
      "assignee_display_name": "<string>",
      "project_key": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "previous_cursor": "<string>"
}

Authorizations

X-CONNECTION-ID
string
header
required
X-API-KEY
string
header
required

Query Parameters

jql
string
required

Jira Query Language (JQL) string. Example: project = PROJ AND issuetype in standardIssueTypes() ORDER BY updated DESC. Max 5000 characters.

limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string | null

Opaque pagination cursor from next_cursor in a previous response. Omit for the first page.

Response

Successful Response

items
PassthroughTicket · object[]
required

List of items returned in the response

next_cursor
string | null

Skip token to continue from the last item in the previous page

previous_cursor
string | null

Skip token to continue from the first item in the previous page