POST
/
reports
/
{report_id}
/
executions
/
{report_execution_id}
/
url
curl --request POST \
  --url https://api.{gr4vy_id}.gr4vy.app/reports/{report_id}/executions/{report_execution_id}/url \
  --header 'Authorization: Bearer <token>'
{
  "url": "https://example.com/download",
  "expires_at": "2013-07-16T19:23:00.000+00:00"
}

This endpoint requires the reports.write scope.

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

report_id
string
required

The unique ID for a report.

report_execution_id
string
required

The unique ID for a report execution.

Response

200 - application/json
url
string

The URL to download the report execution.

expires_at
string

The date and time when the download URL expires.