Retrieve call flow activity. Date filters are required; pagination via pageSize and pn.
POSThttps://secure-api.setshape.com/api/reports/call-flow/{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 |
Required | Start date. |
toDate |
Required | End date. |
pageSize |
Optional | Results per page; copied internally to slctPerPage and defaults to 50. |
pn |
Optional | One-based page number; defaults to 1. |
Example request
{
"filters": {
"fromDate": "2026-07-01",
"toDate": "2026-07-23",
"pageSize": 50,
"pn": 1
}
}