There’s a notes object that in the FreshDesk app is retrieved via https://bridgewaybentech.freshdesk.com/api/_/companies/xxx/notes?per_page=5
The returned object looks like this:
notes (array)
├── id integer
├── title string
├── created_by string
├── last_updated_by string (nullable)
├── created_at timestamp (ISO 8601)
├── updated_at timestamp (ISO 8601)
├── body string (HTML)
├── company_id integer
├── category_id integer
└── attachments (array)
├── id integer
├── name string
├── content_type string
├── size integer (bytes)
├── created_at timestamp (ISO 8601)
├── updated_at timestamp (ISO 8601)
└── attachment_url string (pre-signed S3 URL, expires in 300 seconds)
meta
├── count integer
└── more_items boolean
Is there any way to retrieve this via the FreshWorks API?
Thanks much!
Mark