Issue
Manage Issues.
Get
Get an issue by ID.
Endpoint
HTTP
POST /issue/get
Authorized User Role
anyone
Request Body
Field | Type | Notes |
---|---|---|
id | string | Issue ID. |
Response
An issue object.
Field | Type | Notes |
---|---|---|
attachments | array | Attachments. |
cve | string | CVE number. |
date | date | Issue date. |
description | string | Issue description. |
id | string | Issue ID. |
impacted | string | Impacted product. |
notify | boolean | Notify subscribers. |
priority | string | Issue priority. |
public | boolean | Issue is public. |
recommend | string | Recommended to apply this update. |
release | string | Release version. |
status | string | Issue status. |
subject | string | Issue subject. |
tags | array | Issue tags. |
title | string | Issue title. |
type | string | Issue type. |
Find
Find matching issues.
Endpoint
HTTP
POST /issue/find
Authorized User Role
anyone
Request Body
Field | Type | Notes |
---|---|---|
public | boolean | Filter only public issues. |
subject | string | Subject. |
Query String Options
Field | Type | Default | Notes |
---|---|---|---|
index | string | Index name: primary or gs1. | |
limit | number | Limit number of results. | |
next | object | Token for next page. | |
prev | object | Token for previous page. |
Response
Paged response.
Field | Type | Notes |
---|---|---|
data | array | An array of Issue records. |
next | string | Paged cursor to use for the next page of items. |
prev | string | Pages cursor to use for the previous page of items. |
Issue
Field | Type | Notes |
---|---|---|
attachments | array | Attachments. |
cve | string | CVE number. |
date | date | Issue date. |
description | string | Issue description. |
id | string | Issue ID. |
impacted | string | Impacted product. |
notify | boolean | Notify subscribers. |
priority | string | Issue priority. |
public | boolean | Issue is public. |
recommend | string | Recommended to apply this update. |
release | string | Release version. |
status | string | Issue status. |
subject | string | Issue subject. |
tags | array | Issue tags. |
title | string | Issue title. |
type | string | Issue type. |