Skip to main content
GET
/
marketing
/
campaigns
/
2026-03
/
{campaignGuid}
/
reports
/
metrics
Get Campaign Metrics
curl --request GET \
  --url https://api.hubapi.com/marketing/campaigns/2026-03/{campaignGuid}/reports/metrics \
  --header 'Authorization: Bearer <token>'
{
  "influencedContacts": 123,
  "newContactsFirstTouch": 123,
  "newContactsLastTouch": 123,
  "sessions": 123
}

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

campaignGuid
string
required

The unique identifier of the campaign

Query Parameters

endDate
string
startDate
string

Response

successful operation

influencedContacts
integer<int32>
required

The number of contacts influenced by the campaign.

newContactsFirstTouch
integer<int32>
required

The number of new contacts attributed to the campaign as the first touchpoint.

newContactsLastTouch
integer<int32>
required

The number of new contacts attributed to the campaign as the last touchpoint.

sessions
integer<int32>
required

The total number of sessions generated by the campaign.

Last modified on April 13, 2026