GET

/Report

Usage Notes

When

  • Retrieve completed report
  • Download report results after generation complete

Requirements

  • Reference parameter (GUID from POST response)
  • Report must be in complete status

Notes

  • Stage 3 of 3-stage workflow
  • Returns report content or download link

Description

Retrieves completed report content using reference GUID.

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 identify the specific report request.
reference
string
The GUID reference returned from the POST /Report endpoint to identify the specific report request.

Example Requests

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

Response Examples

json
{
  "result": true,
  "message": "",
  "data": { }
}

// Note: The data field contains the report output as JSON.
// The structure varies by report type and the parameters
// provided in the original POST /report request.