Skip to main content
GET
/
api
/
contact-notes
/
download
Download attachment (generates signed URL and redirects)
curl --request GET \
  --url https://your-instance.example.com/api/contact-notes/download \
  --header 'Authorization: Bearer <token>'
{
  "success": false,
  "message": "Contact note not found",
  "error": "NOT_FOUND"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

key
string
required
fileName
string

Response

Redirect to the signed download URL. The signed URL has Content-Disposition: attachment so the browser downloads the file.