Skip to main content
POST
/
marketing
/
campaigns
/
2026-03
/
batch
/
read
Read a batch of campaigns
curl --request POST \
  --url https://api.hubapi.com/marketing/campaigns/2026-03/batch/read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": [
    {
      "id": "<string>"
    }
  ]
}
'
{
  "completedAt": "2023-11-07T05:31:56Z",
  "results": [
    {
      "assets": {},
      "businessUnits": [
        {
          "id": 123
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "properties": {},
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "startedAt": "2023-11-07T05:31:56Z",
  "status": "CANCELED",
  "links": {},
  "requestedAt": "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.

Query Parameters

endDate
string
properties
string[]
startDate
string

Body

application/json
inputs
object[]
required

An array of PublicCampaignReadInput objects, each containing the ID of a campaign to be read. This property is required.

Response

successful operation

completedAt
string<date-time>
required

The timestamp when the batch request processing was completed.

results
object[]
required

An array of results from the batch operation, each representing a public campaign with assets.

startedAt
string<date-time>
required

The timestamp when the processing of the batch request began.

status
enum<string>
required

The current processing status of the batch operation, with possible values: CANCELED, COMPLETE, PENDING, PROCESSING.

Available options:
CANCELED,
COMPLETE,
PENDING,
PROCESSING

A collection of URLs linking to related resources or documentation.

requestedAt
string<date-time>

The timestamp when the batch request was initially made.

Last modified on April 13, 2026