Skip to main content
GET
/
v1
/
qa-issues
List QA Issues
curl --request GET \
  --url https://api.sigmamind.ai/v1/qa-issues \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "qaIssueId": "issue_1fueLBh6mJxwLbe1",
      "qaRuleId": "rule_YYdKgw1masomMfe8",
      "workspaceId": "org_GdDTrzEppfUfSZPE",
      "agentId": "D5D0p7TUs66TTAEAx",
      "callId": "call-H0eS7imseNUp0jCM",
      "channel": "voice",
      "result": "Fail",
      "remarks": "Agent failed to acknowledge the customer's frustration before proceeding with troubleshooting.",
      "qaRuleSnapshot": {
        "qaRuleId": "rule_YYdKgw1masomMfe8",
        "workspaceId": "org_V6eZ2zg8ziDx5pft",
        "ruleName": "Tone & Professionalism Check",
        "ruleDescription": "Ensures agents maintain a professional and empathetic tone throughout the conversation.",
        "agents": [
          {
            "name": "New AI Agent",
            "agentId": "agent_D5D0p7TUs66TTAEAx",
            "status": "Live"
          }
        ],
        "evaluationCriteria": "Evaluate whether agent greeted the customer by name, avoided interrupting, and closed with a resolution summary.",
        "expectedValue": true
      }
    }
  ],
  "page": 123,
  "size": 123,
  "totalCount": 123,
  "totalPages": 123,
  "hasNext": true,
  "hasPrevious": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Authenticate every request by passing your API key in the X-API-Key header. To get your key, go to Dashboard → API Keys and create or copy your Production API key.

Query Parameters

qaRuleId
string
required

The unique identifier of the QA issue for which QA issues are to be listed.

page
integer<int32>
default:0

The page number to retrieve, starting from 0.

size
integer<int32>
default:10

The number of results to return per page.

Response

OK

data
object[]
page
integer<int32>
size
integer<int32>
totalCount
integer<int64>
totalPages
integer<int32>
hasNext
boolean
hasPrevious
boolean