Report executions
Generate report download URL
Generates a temporary signed URL to download the result of a report
execution.
POST
/reports/{report_id}/executions/{report_execution_id}/url
curl --request POST \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/reports/{report_id}/executions/{report_execution_id}/url \
--header 'Authorization: <authorization>'
{
"expires_at": "2013-07-16T19:23:00.000+00:00",
"url": "https://example.com/download"
}
This endpoint requires the reports.write
scope.
Authorizations
Authorizationheaderrequired
string
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
report_idrequired
string
The unique ID for a report.
report_execution_idrequired
string
The unique ID for a report execution.
Response
200 - application/json
expires_at
string
The date and time when the download URL expires.
url
string
The URL to download the report execution.
curl --request POST \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/reports/{report_id}/executions/{report_execution_id}/url \
--header 'Authorization: <authorization>'
{
"expires_at": "2013-07-16T19:23:00.000+00:00",
"url": "https://example.com/download"
}