Get
GET /:account/campaign_filters/:campaign_filter
A CampaignFilter is a pre-made search for Campaigns.
Examples
Get a Campaign Filter
Request
GET /my_account/campaign_filters/all
Example
$ curl -i -H Accept:"application/vnd.textus+jsonld" \
-H Authorization:"Bearer {token}" \
-X GET /my_account/campaign_filters/all
Response
Status
200
Response Type
Example Body
{
"@type": "CampaignFilter",
"@context": "/contexts/CampaignFilter.jsonld",
"id": "/my_account/campaign_filters/all",
"slug": "all",
"title": "All Campaigns",
"campaigns": "/my_account/campaign_filters/all/campaigns",
"export": "/my_account/campaign_filters/all/export"
}