Organization
List your support tickets
Every support ticket your organization has filed, newest first (up to 500).
Comment bodies are omitted here — commentCount tells you whether there is
a thread, and the single-ticket endpoint returns it in full.
Example
curl -X GET "https://api.hyperprop.com/platform/v1/organization/support/tickets" \
-H "X-API-Key: hp_live_your_key_here"
Authentication: Accepts either Authorization: Bearer <jwt> (dashboard) or X-API-Key: hp_live_... (programmatic).
GET
/
v1
/
organization
/
support
/
tickets
List your support tickets
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/support/tickets \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/support/tickets"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/support/tickets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hyperprop.com/platform/v1/organization/support/tickets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/organization/support/tickets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hyperprop.com/platform/v1/organization/support/tickets")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/support/tickets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"tickets": [
{
"id": "e4b1a2c3-d4e5-4f60-8192-a3b4c5d6e7f8",
"ticketNumber": 42,
"organizationId": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34",
"createdByUserId": "0b1c2d3e-4f50-6172-8394-a5b6c7d8e9f0",
"createdByEmail": "ops@yourfirm.com",
"createdByName": "Your Firm LLC",
"type": "incident",
"title": "Fills missing on ES orders since this morning",
"description": "Orders 123/456 filled on the exchange but no fills showed…",
"accountIds": [
"1e7c9f02-e980-4410-b81f-39599bb6fa47"
],
"occurredAt": "2026-08-27T13:45:00.000Z",
"priority": "high",
"status": "open",
"attachments": [
{
"path": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34/1f2e.../screenshot.webp",
"name": "screenshot.webp",
"size": 482133,
"contentType": "image/webp",
"signedUrl": "<string>"
}
],
"comments": [
{
"id": "7d5c2f4e-9a1b-4c3d-8e2f-6a5b4c3d2e1f",
"authorType": "hyperprop",
"authorId": "<string>",
"authorName": "ops@yourfirm.com",
"body": "We shipped a fix — can you confirm it looks right now?",
"attachments": [
{
"path": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34/1f2e.../screenshot.webp",
"name": "screenshot.webp",
"size": 482133,
"contentType": "image/webp",
"signedUrl": "<string>"
}
],
"createdAt": "2026-08-27T16:21:00.000Z"
}
],
"commentCount": 2,
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Invalid or expired token",
"code": "UNAUTHORIZED"
}{
"statusCode": 500,
"error": "Internal Server Error",
"message": "Failed to load tickets",
"code": "SUPPORT_ERROR"
}Related topics
Reply on a support ticketCreate a support ticketGet a support ticket with its reply threadGet signed upload URLs for ticket attachmentsChangelog⌘I
List your support tickets
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/support/tickets \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/support/tickets"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/support/tickets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hyperprop.com/platform/v1/organization/support/tickets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/organization/support/tickets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hyperprop.com/platform/v1/organization/support/tickets")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/support/tickets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"tickets": [
{
"id": "e4b1a2c3-d4e5-4f60-8192-a3b4c5d6e7f8",
"ticketNumber": 42,
"organizationId": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34",
"createdByUserId": "0b1c2d3e-4f50-6172-8394-a5b6c7d8e9f0",
"createdByEmail": "ops@yourfirm.com",
"createdByName": "Your Firm LLC",
"type": "incident",
"title": "Fills missing on ES orders since this morning",
"description": "Orders 123/456 filled on the exchange but no fills showed…",
"accountIds": [
"1e7c9f02-e980-4410-b81f-39599bb6fa47"
],
"occurredAt": "2026-08-27T13:45:00.000Z",
"priority": "high",
"status": "open",
"attachments": [
{
"path": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34/1f2e.../screenshot.webp",
"name": "screenshot.webp",
"size": 482133,
"contentType": "image/webp",
"signedUrl": "<string>"
}
],
"comments": [
{
"id": "7d5c2f4e-9a1b-4c3d-8e2f-6a5b4c3d2e1f",
"authorType": "hyperprop",
"authorId": "<string>",
"authorName": "ops@yourfirm.com",
"body": "We shipped a fix — can you confirm it looks right now?",
"attachments": [
{
"path": "a6fcc0ce-eb28-4f43-b256-96a3144b0d34/1f2e.../screenshot.webp",
"name": "screenshot.webp",
"size": 482133,
"contentType": "image/webp",
"signedUrl": "<string>"
}
],
"createdAt": "2026-08-27T16:21:00.000Z"
}
],
"commentCount": 2,
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Invalid or expired token",
"code": "UNAUTHORIZED"
}{
"statusCode": 500,
"error": "Internal Server Error",
"message": "Failed to load tickets",
"code": "SUPPORT_ERROR"
}