Sign in

Forwards Report

documented

Returns forward statistics for a campaign.

POST /api/v3/report.campaign.forwards/jsonEmail Campaign Managementno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: I attempted to fetch Sendloop's official API docs for the endpoint /api/v3/report.campaign.forwards/json but could not access the live docs. The following is a best-effort template based on the endpoint path you provided and common REST conventions. Replace field names as needed to match the official spec.
npx -y keychains@latest curl "https://api.sendloop.com/v1/api/v3/report.campaign.forwards/json" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"campaign_id": "{{$campaign_id}}", "start_date": "{{$start_date}}", "end_date": "{{$end_date}}", "limit": {{$limit}} }'
Forwards Report · sendloop · OpenIntegrations