Skip to main content
GET
/
api
/
migration
/
data-migration
/
runs
/
{run_id}
/
report-url
Get a presigned URL for the migration report
curl --request GET \
  --url https://api.example.com/api/migration/data-migration/runs/{run_id}/report-url \
  --header 'Authorization: Bearer <token>'
{
  "url": "<string>",
  "urls": [
    {
      "url": "<string>",
      "label": "<string>",
      "key": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

run_id
string<uuid>
required

Run ID.

Response

Successful Response

url
string
required
urls
ReportUrlEntry · object[]