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,
    "duplicatedIssues": [
      {
        "id": "223e4567-e89b-12d3-a456-426614174001",
        "title": "Duplicate: Response quality degradation",
        "createdAt": "2024-01-06T10:20:30.456Z"
      }
    ]
  }
}

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

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Example:

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

Response

Successfully retrieved issue

Successful response containing the issue data with minimal duplicate issues (id, title, createdAt)

data
object
required