---
title: "List support issues"
url: "https://docs.unified.to/unified/issue/List_support_issues"
description: "API reference for List support issues. Launch multiple pre-built Issue integrations today with zero maintenance — all through a single API."
generated_at: "2026-06-24T23:55:00.429Z"
---
# List support issues

 GET/unified/issue

## Parameters

**limit**number  default=100

**offset**number  default=0

**updated\_gte**date 

Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**sort** enum

name

updated\_at

created\_at

**order** enum

asc

desc

## Returns

[Issue](/unified/issue/model)array

**id**string 

**created\_at**string 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**updated\_at**string 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**title**string  required 

**status** enum required 

Valid values:

 "COMPLETED" 

 "NEW" 

 "ROADMAP" 

 "IN\_PROGRESS" 

 "ON\_HOLD" 

**url**string 

**workspace\_id**string  required 

(reference to KmsSpace)

**type**string array 

**resolution\_time**number 

**ticket\_ref**string  required 

**size**number 

1-5, 1 is lowest

**importance**number 

1-5, 1 is lowest

## Code Samples

### Node.js SDK

```
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const results = await sdk.unified.listUnifiedIssues({ 
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-24T23:51:01.066Z',
    sort: 'updated_at',
    order: 'asc',
 });
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/issue',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-24T23:51:01.066Z',
    sort: 'updated_at',
    order: 'asc',
  }
};

const results = await axios.request(options);
```

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc")
  .setHeader("accept", "application/json")
  .setHeader("authorization", ".....")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
```

### Go

```
import (
	"fmt"
	"net/http"
	"io/ioutil"
)

url := `https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("accept", "application/json")
req.Header.Add("authorization", ".....")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
```

### Python

```
import requests

url = "https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc"

headers = {
    "accept": "application/json",
    "authorization": "....."
}

response = requests.get(url, headers=headers)
```

### PHP

```
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: ....."
  ],
]);
```

### Ruby

```
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = '....'

response = http.request(request)
puts response.read_body
```

### cURL

```
curl --request GET \
  --url 'https://api.unified.to/unified/issue?limit=50&offset=0&updated_gte=2026-06-24T23:51:01.066Z&sort=updated_at&order=asc' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
