Skip to main content
PATCH
/
marketing
/
campaigns
/
2026-03
/
{campaignGuid}
Update campaign
curl --request PATCH \
  --url https://api.hubapi.com/marketing/campaigns/2026-03/{campaignGuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "properties": {}
}
'
{
  "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

Body

application/json
properties
object
required

A collection of key-value pairs representing the properties of the campaign. Each key is a property name, and the corresponding value is the property's value.

Response

successful operation

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 collection of key-value pairs representing additional 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 April 13, 2026