GET

/Report/Status

Usage Notes

When

  • Check report generation progress
  • Poll until status indicates completion or error

Requirements

  • Reference parameter (GUID from POST response)

Notes

  • Stage 2 of 3-stage workflow
  • Poll periodically until complete

Description

Returns current status of report generation. Poll until status indicates ready for retrieval.

Required Headers - See Authentication

HeaderValueDescription
Authorization{accessToken}Bearer token for API access
Version2.0API version identifier

Query Parameters

Parameter Type Required Description
reference >
string
The GUID reference returned from the POST /Report endpoint to check the status of the specific report request.
reference
string
The GUID reference returned from the POST /Report endpoint to check the status of the specific report request.

Example Requests

bash
# Check report status
curl -X GET 'https://api.7g.com.au/Report/Status?reference=a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
  -H 'Authorization: {accessToken}' \
  -H 'Version: 2.0'

Response Examples

json
{
  "result": true,
  "message": "Report has been successfully completed!",
  "data": "complete"
}