Skip to main content
GET
/
marketing
/
v3
/
campaigns
/
{campaignGuid}
Read a campaign
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/campaigns/{campaignGuid} \
  --header 'Authorization: Bearer <token>'
{
  "assets": {},
  "businessUnits": [
    {
      "id": 123
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "id": "<string>",
  "properties": {},
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

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 UUID of the campaign, required Example: 9dbec438-53e2-4b28-8c0f-38f56574a6e8

Query Parameters

endDate
string

The end date for fetching asset metrics, in YYYY-MM-DD format. Optional. Example: 2000-01-27

properties
string[]

A comma-separated list of properties to include in the response.
Unrecognized properties are ignored. Optional. Example: hs_name,hs_budget, hs_notes

startDate
string

The start date for fetching asset metrics, in YYYY-MM-DD format.
Optional. Example: 2000-01-20

Response

successful operation

assets
object
required

Contains the assets associated with the campaign, each represented as a collection of campaign assets.

businessUnits
object[]
required

An array of business units associated with the campaign, each represented by a PublicBusinessUnit object.

createdAt
string<date-time>
required

The date and time when the campaign was created, formatted as a date-time string.

id
string
required

The unique identifier for the campaign.

properties
object
required

A map of key-value pairs representing the properties of the campaign.

updatedAt
string<date-time>
required

The date and time when the campaign was last updated, formatted as a date-time string.

Last modified on March 30, 2026