Create a signed, time-limited download for an available artifact.
curl --request POST \
--url http://localhost:3001/v1/training/artifacts/{artifact_id}/download \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/artifacts/{artifact_id}/download"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/artifacts/{artifact_id}/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}unified-training
Create a signed, time-limited download for an available artifact.
POST
/
v1
/
training
/
artifacts
/
{artifact_id}
/
download
Create a signed, time-limited download for an available artifact.
curl --request POST \
--url http://localhost:3001/v1/training/artifacts/{artifact_id}/download \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/artifacts/{artifact_id}/download"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/artifacts/{artifact_id}/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}Authorizations
Whitney-issued API key. No organization-selection header is accepted.
Path Parameters
Response
A provider-issued signed download response. The exact URL and expiry fields are provider-dependent.
Provider signed-download payload. Treat returned URL-like fields as short-lived secrets and do not persist them.
