Preview — in progress

Results

Submit and query individual test results against a run ID.

POST /api/v1/runs/:runId/results

curl https://releaseqa.com/api/v1/runs/$RUN_ID/results \
  -X POST \
  -H "Authorization: Bearer $RELEASEQA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "results": [
      { "testSuite": "auth.spec.ts", "testCase": "signs in", "status": "passed", "duration": 420 }
    ]
  }'

We're writing the long-form guide now

The full walkthrough for Results is being written and reviewed. In the meantime, the Quick Start and Configuration pages cover the core setup that this guide builds on.

Need this page filled in sooner? Email support@releaseqa.com and we'll prioritise it.

Related