Skip to main content
GET
/
v1
/
report-issue
List issue reports
curl --request GET \
  --url https://api.triqai.com/v1/report-issue \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "transactionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "description": "<string>",
      "fields": [
        "<string>"
      ],
      "status": "pending",
      "statusMessage": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "generatedAt": "2023-11-07T05:31:56Z",
    "requestId": "<string>",
    "version": "<string>",
    "page": 123,
    "size": 123,
    "total": 123,
    "totalPages": 123
  }
}

Authorizations

X-API-Key
string
header
required

Organization API key for authentication

Query Parameters

page
integer
default:1
Required range: x >= 1
size
integer
default:25
Required range: 1 <= x <= 100
status
enum<string>

Filter by status

Available options:
pending,
reviewing,
resolved,
dismissed
transaction_id
string<uuid>

Filter by transaction ID

Response

Issue report list

success
boolean
Example:

true

data
object[]
meta
object