POST
/user/generate-download-url
const url = 'https://example.com/user/generate-download-url';const options = { method: 'POST', headers: {'X-Tenzir-UserKey': '<X-Tenzir-UserKey>', 'Content-Type': 'application/json'}, body: '{"tenant_id":"example","expiration":3600,"filename":"example","usage":"nodes_upload_nodes_download"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/user/generate-download-url \ --header 'Content-Type: application/json' \ --header 'X-Tenzir-UserKey: <X-Tenzir-UserKey>' \ --data '{ "tenant_id": "example", "expiration": 3600, "filename": "example", "usage": "nodes_upload_nodes_download" }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
GenerateDownloadUrlResponse
object
upload_url
required
Upload Url
string
download_url
required
Download Url
string
Example generated
{ "upload_url": "example", "download_url": "example"}{"detail": "Invalid API Key"}
{"detail": "Not permitted to access this tenant"}
Validation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}