DELETE
/Report
Usage Notes
When
- Remove generated report
- Clean up reports before auto-purge
Requirements
- Reference parameter
Notes
- Reports auto-purge after 24 hours regardless
Description
Deletes a generated report by reference GUID.
Required Headers - See Authentication
| Header | Value | Description |
|---|---|---|
| Authorization | {accessToken} | Bearer token for API access |
| Version | 2.0 | API version identifier |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
reference |
string | The GUID reference of the report request to delete. This permanently removes the report and all associated data. |
reference
The GUID reference of the report request to delete. This permanently removes the report and all associated data.
Example Requests
bash
# Delete specific report request
curl -X DELETE '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": "Report request has been deleted.",
"data": {}
}