Skip to main content
GET
/
orgs
/
{org_id}
/
files
/
{file_id}
/
download
Download file export
import requests

url = "https://vued-office-api-dev.onrender.com/v1/orgs/{org_id}/files/{file_id}/download"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
"<string>"

Authorizations

Authorization
string
header
required

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

Path Parameters

org_id
string<uuid>
required
file_id
string<uuid>
required

Response

200 - application/zip

ZIP bytes.

The response is of type file.

Last modified on June 29, 2026