Download attachment public URL
GET /api/v1/attachments/{attachmentId}/download Select code sample Fetch cURL
Download attachment Next
Get attachment public URL
const url = 'https://localhost:10001/api/v1/attachments/1/download';const options = {method: 'GET', headers: {Authorization: '
'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
curl --request GET \ --url https://localhost:10001/api/v1/attachments/1/download \ --header 'Authorization:
'
Permanent endpoint that redirects to a freshly generated short-lived signed URL
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” attachmentId required integerAttachment ID
Responses
Section titled “ Responses ”307
Section titled “307 ”Redirect to short-lived signed URL
Media type application/json400
Section titled “400 ”Bad request - Invalid attachment ID
Media type application/json object key additional properties stringExample generated
{ "additionalProperty": "example"}
401
Section titled “401 ”Unauthorized - Missing or invalid token
Media type application/json object key additional properties stringExample generated
{ "additionalProperty": "example"}
404
Section titled “404 ”Attachment not found
Media type application/json object key additional properties stringExample generated
{ "additionalProperty": "example"}
500
Section titled “500 ”Internal server error
Media type application/json object key additional properties stringExample generated
{ "additionalProperty": "example"}
Previous Download attachment Next
Get attachment public URL