GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/clickactivity

https://api.questline.com/v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/clickactivity

Gets click activity for a campaign send.

Request Information

URI Parameters

Name Description Type Additional Info
standardCampaignId The ID of the standard campaign. globally unique identifier Required
standardCampaignSendId The ID of the standard campaign send. globally unique identifier Required

Body Parameters

None.

Response Information

Resource Description

GetStandardCampaignSendClickActivityResponseV3
Name Description Type Additional Info
StandardCampaignSendClickActivity The list of standard campaign send click activity records. Collection of StandardCampaignSendClickActivityV3 None.
Error The response error, if any. ResponseErrorV3 None.

Response Formats

application/json, text/json

Sample:

{
  "StandardCampaignSendClickActivity": [
    {
      "StandardCampaignId": "d824d78f-5fd2-4371-9e27-896f7264939d",
      "StandardCampaignSendId": "ddf8b7d1-a35b-4443-9c0d-b912d9892588",
      "URL": "sample string 3",
      "TotalClicks": 4,
      "UniqueClicks": 5,
      "PercentageClicked": 6.1
    },
    {
      "StandardCampaignId": "d824d78f-5fd2-4371-9e27-896f7264939d",
      "StandardCampaignSendId": "ddf8b7d1-a35b-4443-9c0d-b912d9892588",
      "URL": "sample string 3",
      "TotalClicks": 4,
      "UniqueClicks": 5,
      "PercentageClicked": 6.1
    }
  ],
  "Error": {
    "ErrorId": 1,
    "ErrorMessage": "sample string 1"
  }
}

text/javascript, application/javascript, application/json-p

Sample:

/**/ typeof  === 'function' && ({"StandardCampaignSendClickActivity":[{"StandardCampaignId":"d824d78f-5fd2-4371-9e27-896f7264939d","StandardCampaignSendId":"ddf8b7d1-a35b-4443-9c0d-b912d9892588","URL":"sample string 3","TotalClicks":4,"UniqueClicks":5,"PercentageClicked":6.1},{"StandardCampaignId":"d824d78f-5fd2-4371-9e27-896f7264939d","StandardCampaignSendId":"ddf8b7d1-a35b-4443-9c0d-b912d9892588","URL":"sample string 3","TotalClicks":4,"UniqueClicks":5,"PercentageClicked":6.1}],"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});