Returns a temporary download URL for a portfolio file.
GET
/portfolio_files/{id}/download_url
curl \
--request GET 'https://api.visible.vc/portfolio_files/{id}/download_url' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"download_url": "https://visible-test.s3.amazonaws.com/example"
}
Response examples (401)
{
"errors": [
{
"type": "unauthorized"
}
]
}
Response examples (403)
{
"errors": [
{
"type": "forbidden"
}
]
}
Response examples (404)
{
"errors": [
{
"type": "record_missing"
}
]
}
Response examples (429)
{
"errors": [
{
"type": "rate_limit_exceeded"
}
]
}