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
}
]
}
}Retrieves detailed information about a specific issue, including all duplicate/child issues in the issues array.
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
}
]
}
}Your unique Avido API key
Your unique Avido Application ID
The unique identifier of the issue
"123e4567-e89b-12d3-a456-426614174000"
Successfully retrieved issue
Successful response containing the issue data with its duplicate/child issues
Show child attributes