Skip to main content
GET
/
v0
/
issues
/
{id}
Get a single issue by ID with duplicates
curl --request GET \
  --url https://api.avidoai.com/v0/issues/{id} \
  --header 'x-api-key: <api-key>' \
  --header 'x-application-id: <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",
    "type": "BUG",
    "assignedTo": "user_789012",
    "assignedUser": {
      "id": "user_789012",
      "name": "John Doe",
      "email": "john@example.com",
      "image": "https://example.com/avatar.jpg"
    },
    "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",
    "hasSuggestedTask": false,
    "issues": [
      {
        "id": "223e4567-e89b-12d3-a456-426614174001",
        "orgId": "org_123456",
        "title": "Duplicate: Response quality degradation",
        "summary": "Same issue reported again",
        "status": "OPEN",
        "source": "TEST",
        "priority": "HIGH",
        "type": "BUG",
        "applicationId": "456e7890-e89b-12d3-a456-426614174000",
        "parentId": "123e4567-e89b-12d3-a456-426614174000",
        "createdAt": "2024-01-06T10:20:30.456Z",
        "modifiedAt": "2024-01-06T10:20:30.456Z",
        "hasSuggestedTask": false
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

x-application-id
string
header
required

Your unique Avido Application ID

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 with its duplicate/child issues

data
object
required