GET
/
v0
/
issues
/
{id}
Get a single issue by ID
curl --request GET \
  --url https://api.avidoai.com/v0/issues/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "orgId": "org_123456",
    "title": "Response quality degradation",
    "summary": "The chatbot is providing incomplete responses to user queries",
    "status": "OPEN",
    "source": "TEST",
    "priority": "HIGH",
    "assignedTo": "user_789012",
    "applicationId": "456e7890-e89b-12d3-a456-426614174000",
    "testId": "789e4567-e89b-12d3-a456-426614174000",
    "annotationId": null,
    "traceId": "trace_abc123",
    "createdAt": "2024-01-05T12:34:56.789Z",
    "modifiedAt": "2024-01-05T12:34:56.789Z"
  }
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

Path Parameters

id
string<uuid>
required

The unique identifier of the issue

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Successfully retrieved issue

Successful response containing the issue data