GET
    /organizations/{orgId}/runs/batch/{batchId}

    Consultar Status do Test Cycle

    Retorna o status atual do Test Cycle, incluindo progresso das runs e disponibilidade do relatório JUnit.

    🚀 API Playground

    GET
    https://api.getno.com.br/v1/organizations/{orgId}/runs/batch/{batchId}
    curl --location --request GET \
      'https://api.getno.com.br/v1/organizations/{orgId}/runs/batch/{batchId}'

    Response

    200 OK

    Retorna os detalhes atualizados do Test Cycle com contadores de progresso.

    Exemplo de Response (em andamento)
    {
      "id": "abc123def456",
      "totalRuns": 5,
      "completedRuns": 3,
      "succeededRuns": 2,
      "failedRuns": 1,
      "junitReportStatus": null,
      "environmentId": "env_prod",
      "environmentSlugSnapshot": "prod",
      "createdAt": "2025-09-09T01:31:14.040000+00:00"
    }
    Exemplo de Response (completo)
    {
      "id": "abc123def456",
      "totalRuns": 5,
      "completedRuns": 5,
      "succeededRuns": 4,
      "failedRuns": 1,
      "junitReportStatus": "ready",
      "junitReportRef": "gs://bucket/.../abc123def456.xml",
      "createdAt": "2025-09-09T01:31:14.040000+00:00"
    }