Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
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>"
Download a ZIP export for a file or folder node.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ZIP bytes.
The response is of type file.
file