Scheduled Email & Bulk Blast Report

Retrieve scheduled email and bulk blast activity. Paginated; dates default to the current month.

POSThttps://secure-api.setshape.com/api/reports/scheduled-emails/{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. If neither date is supplied, defaults to the current month.
toDate Optional End date. If only one date is supplied, it is used for both boundaries.
slctPerPage Optional Results per page; defaults to 50.
pn Optional One-based page number; defaults to 1.

Example request

{
  "filters": {
    "fromDate": "2025-06-10",
    "toDate": "2025-06-15",
    "slctPerPage": 50,
    "pn": 1
  }
}