GET Get Campaign Link Report​
GET
/campaigns/{id}/link-report
Get a report of all tracked links in a campaign, including click counts for each URL. Also returns the click and open tracking status for the campaign.
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​
Path Parameters
id*
The campaign ID.
Type
Requiredinteger
Responses​
Link report retrieved successfully.
application/json
JSON
{
"links": [
{
"url": "string",
"total": 0,
"unique": 0
}
],
"click_status": "string",
"open_status": "string"
}