API Reference

Overview

Generate Report

Generates a report for a selected schedule and date range. Use this endpoint to prepare downloadable report output for sharing, auditing, and trend analysis across captured screenshots.

Endpoint

POSThttps://snapshot-api.mindiqglobal.com/api/v1/reports/screenshot

Request Body

{
  "executionId": 21,
  "includeScheduleName": true,
  "includeScheduleDescription": true,
  "includeItemInformation": true,
  "includeImageUrl": true
}

Request Body Parameters

FieldRequiredTypeDescription
executionIdYesintegerSchedule execution ID used for report generation.
includeScheduleNameNobooleanInclude schedule name in the report. Possible values: `true`, `false`.
includeScheduleDescriptionNobooleanInclude schedule description in the report. Possible values: `true`, `false`.
includeItemInformationNobooleanInclude schedule item metadata in the report. Possible values: `true`, `false`.
includeImageUrlNobooleanInclude image URL text in the report. Possible values: `true`, `false`.

Success Response

{
  "reportId": 10,
  "status": "COMPLETED",
  "downloadUrl": "https://mindiqglobal-snapshot-public-data-prod.s3.amazonaws.com/reports/report-10.pdf",
  "totalScreenshots": 18,
  "generatedAt": "2026-07-31T00:00:00Z"
}

Response Body Parameters

NameTypeDescription
reportIdintegerGenerated report ID.
statusstringReport generation status (example: `COMPLETED`).
downloadUrlstringReport download URL.
totalScreenshotsintegerNumber of screenshots included in the generated report.
generatedAtdatetimeReport generation datetime in ISO-8601 format.