GET Top Campaigns​
GET
/reports/top-campaigns
Retrieve the top archived campaigns ranked by open_rate, click_rate, or total_sent. Requires FluentCampaign Pro.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Query Parameters
sort_by
Ranking metric. Any unsupported value falls back to open_rate.
Type
string
Valid values
"open_rate""click_rate""total_sent"Default
"open_rate"per_page
Maximum number of top campaigns to return.
Type
integer
Default
10Responses​
Top campaign report retrieved successfully.
application/json
JSON
{
"campaigns": [
{
"id": 0,
"title": "string",
"updated_at": "string",
"total_sent": 0,
"open_rate": 0,
"click_rate": 0
}
],
"available": true
}