Retrieve note activity. Paginated; dates default to the current month when omitted.
POSThttps://secure-api.setshape.com/api/reports/user-notes-tracking/{crmid}
Replace
{crmid} with your Shape system ID — found on the API Integrations page. Every request also needs your auth header — see Using Shape APIs.Body parameters
Send a filters object containing the report controls.
| Field | Requirement | Description |
|---|---|---|
filters |
Required | Object containing report controls. |
fromDate |
Optional | Start date; defaults to the first day of the current month when neither date is provided. |
toDate |
Optional | End date; defaults to today when neither date is provided. |
drpUsers |
Optional | User filter accepted by the underlying report. |
countType |
Optional | Counting mode; defaults to leads. |
includeDeletedLeads |
Optional | Whether reporting includes deleted records. |
Example request
{
"filters": {
"fromDate": "2025-08-01",
"toDate": "2025-08-09"
}
}