Get support issues for the current customer
curl --request GET \
--url https://api.kadoa.com/v4/support/issues \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kadoa.com/v4/support/issues"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kadoa.com/v4/support/issues', 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.kadoa.com/v4/support/issues",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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.kadoa.com/v4/support/issues"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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.kadoa.com/v4/support/issues")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kadoa.com/v4/support/issues")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"issues": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"teamId": "f0e1d2c3-b4a5-6789-0abc-def123456789",
"workflowId": "12345678-abcd-ef01-2345-6789abcdef01",
"workflowName": "Product catalog scraper",
"issueId": "KAD-1234",
"requestedAt": "2026-03-18T09:15:00.000Z",
"resolvedAt": "2026-03-18T10:32:12.000Z",
"resolvedBy": "support-agent",
"issueTitle": "Missing price fields on product pages",
"issueDescription": "Several product pages are returning null for the price field. Affected URLs include the seasonal sale section.",
"status": "Done",
"priority": 2,
"labels": [],
"updatedAt": "2026-03-18T10:32:00.000Z",
"resolutionMessage": "Updated the CSS selectors to handle the new page layout."
}
]
}Support
List support issues
Retrieve all support issues for the current customer
GET
/
v4
/
support
/
issues
Get support issues for the current customer
curl --request GET \
--url https://api.kadoa.com/v4/support/issues \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kadoa.com/v4/support/issues"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kadoa.com/v4/support/issues', 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.kadoa.com/v4/support/issues",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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.kadoa.com/v4/support/issues"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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.kadoa.com/v4/support/issues")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kadoa.com/v4/support/issues")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"issues": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"teamId": "f0e1d2c3-b4a5-6789-0abc-def123456789",
"workflowId": "12345678-abcd-ef01-2345-6789abcdef01",
"workflowName": "Product catalog scraper",
"issueId": "KAD-1234",
"requestedAt": "2026-03-18T09:15:00.000Z",
"resolvedAt": "2026-03-18T10:32:12.000Z",
"resolvedBy": "support-agent",
"issueTitle": "Missing price fields on product pages",
"issueDescription": "Several product pages are returning null for the price field. Affected URLs include the seasonal sale section.",
"status": "Done",
"priority": 2,
"labels": [],
"updatedAt": "2026-03-18T10:32:00.000Z",
"resolutionMessage": "Updated the CSS selectors to handle the new page layout."
}
]
}Authorizations
API key for authentication
Query Parameters
When true, includes resolved issues in the response. Defaults to false.
Available options:
true, false When set, only returns issues attached to this workflow.
Response
200 - application/json
List of support issues
Show child attributes
Show child attributes
⌘I