Skip to content
View as Markdown

POST Subscribers Export Page​

POST
/subscribers-export

Retrieve one page of export-ready subscriber rows using a request body. This is the preferred export endpoint because filter payloads can exceed URL limits. 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)

Request Body​

application/json
JSON
{
"columns": [
"string"
],
"custom_fields": [
"string"
],
"commerce_columns": [
"string"
],
"company_ids": [
0
],
"page": 1,
"filter_type": "simple",
"search": "string",
"sort_by": "id",
"sort_type": "DESC",
"has_commerce": true,
"contact_ids": [
0
],
"advanced_filters": "string",
"tags": [
0
],
"statuses": [
"string"
],
"lists": [
0
],
"limit": 0,
"offset": 0
}

Responses​

Export page retrieved successfully.

application/json
JSON
{
"page": 0,
"total": 0,
"headers": [
"string"
],
"rows": [
[
]
],
"has_more": true
}

Playground​

Authorization
Body

Samples​

Powered by VitePress OpenAPI