/api/2.0/campaigns/email/{PK}/opens/

GET https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/opens/

Description: Reads a paginated list of recipients that opened an email in batches of 100.

PK → Campaign_ID

Sample Response:
{
    "count": 1,
    "total_count": 1,
    "page_size": 100,
    "page_number": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "campaign_id": 8407,
            "campaign_name": "Pre-populating emailaddress",
            "contact_id": 755093,
            "email_address": "tj.southern@salesfusion.com",
            "first_name": "STuart",
            "last_name": "Stabler",
            "account_name": "No Company",
            "account_id": 1,
            "owner_id": 3,
            "owner_name": "Michael North",
            "open_date": "2018-05-17T15:53:15.667000Z",
            "body_source": "A"
        }
    ]
}