# Get Report Status

Get the status of a report generation job. Returns the current status, timestamps, and error information if the job failed.

Endpoint: GET /rmg/api/release/report/{reportId}/status
Version: 1.0
Security: x-api-key

## Header parameters:

  - `Harness-Account` (string, required)
    Account Identifier

## Query parameters:

  - `orgIdentifier` (string)
    Organisation Identifier

  - `projectIdentifier` (string)
    Project Identifier

## Path parameters:

  - `reportId` (string, required)

## Response 200 fields (application/json):

  - `reportId` (string, required)

  - `status` (string, required)
    Enum: "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED"

  - `createdAt` (integer)

  - `completedAt` (integer,null)

  - `errorMessage` (string,null)

  - `totalReleases` (integer,null)

## Response 400 fields (application/json):

  - `message` (string, required)
    error message detail

  - `code` (string)
    canonical error code name
    Enum: "BAD_REQUEST", "UNAUTHORIZED", "FORBIDDEN", "NOT_FOUND", "INTERNAL_SERVER_ERROR"


