Notes

Upload Note Attachment

POST /v1/notes/attachments

POST/v1/notes/attachments
POST
/v1/notes/attachments

Upload an attachment for a note

Upload a file (PDF, DOCX, image, etc.) to be referenced from a note. Returns a hashed attachmentId — pass it in attachmentIds[] on POST /v1/notes. Maximum file size is 20 MB.

Content-Type: multipart/form-data with a single file field.

Authorization

x-api-key<token>

API key for Open API authentication

In: header

Request Body

multipart/form-dataRequired

filefile

Format: "binary"

Responses

201
Attachment uploaded

Request

curl -X POST \
  "https://open-api.saleshandy.com/v1/notes/attachments" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "file=@/path/to/your/file.pdf"

Response

No response body