Download a shared file
curl --request POST \
--url https://api.arg.ai/api/share/{shareId}/downloadimport requests
url = "https://api.arg.ai/api/share/{shareId}/download"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.arg.ai/api/share/{shareId}/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"{
"detail": "<string>"
}Sharing
Download a shared file
Public endpoint. Send the link’s password in the body when it has one.
POST
/
api
/
share
/
{shareId}
/
download
Download a shared file
curl --request POST \
--url https://api.arg.ai/api/share/{shareId}/downloadimport requests
url = "https://api.arg.ai/api/share/{shareId}/download"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.arg.ai/api/share/{shareId}/download', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"{
"detail": "<string>"
}Path Parameters
Response
Successful response
The response is of type file.