GenPages

Get performance metrics for a workspace's campaigns.

Reports how the generated pages are doing: how many were visited, how many visitors clicked, and how long they stayed.

visit_percentage is pages visited as a share of pages generated, so it measures reach rather than conversion. click_percentage is the share of unique visitors who clicked something.

get/api/external/v1/campaigns/analytics

Query parameters

workspace_idinteger required

The workspace to report on.

Example:55

The workspace to report on.

campaign_idsinteger[]

Limit to these campaigns. Defaults to all of them.

Limit to these campaigns. Defaults to all of them.

[
  123,
  124
]

Response

Example response

{
  "campaigns": [
    {
      "campaign_id": 123,
      "name": "Enterprise Outreach",
      "visit_percentage": 42.5,
      "click_percentage": 18.2,
      "average_time_on_page_seconds": 47,
      "pages_visited": 85,
      "unique_visitors": 71,
      "total_button_clicks": 19
    }
  ]
}

Changes

Changed in 1 of the 3 revisions of this API.1