List support issues

GET/unified/issue

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum

Returns

Issuearray
idstring
created_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
titlestring required
status enum required
Valid values:
"COMPLETED"
"NEW"
"ROADMAP"
"IN_PROGRESS"
"ON_HOLD"
urlstring
workspace_idstring required
(reference to KmsSpace)
typestring array
resolution_timenumber
ticket_refstring required
sizenumber
1-5, 1 is lowest
importancenumber
1-5, 1 is lowest
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/issue',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-15T20:20:25.329Z',
    sort: 'updated_at',
    order: 'asc',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?