Saltar al contenido principal
GET
/
email
/
public
/
v1
/
campaigns
/
{campaign_id}
Get campaign data for a given campaign
curl --request GET \
  --url https://api.hubapi.com/email/public/v1/campaigns/{campaign_id}
{
  "appId": 123,
  "appName": "<string>",
  "contentId": 123,
  "counters": {
    "delivered": 123,
    "open": 123,
    "processed": 123,
    "sent": 123
  },
  "id": 123,
  "name": "<string>",
  "numIncluded": 123,
  "numQueued": 123,
  "subType": "<string>",
  "subject": "<string>",
  "type": "<string>"
}

Documentation Index

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

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

Parámetros de ruta

campaign_id
integer
requerido

The Internal HubSpot ID of the email that you want to get the details for.

Respuesta

Campaign data retrieved successfully

appId
integer
requerido

The application ID

appName
string
requerido

The application name

contentId
integer
requerido

The content ID

counters
object
requerido
id
integer
requerido

The campaign ID

name
string
requerido

The campaign name

numIncluded
integer
requerido

Number of recipients included

numQueued
integer
requerido

Number of recipients queued

subType
string
requerido

The campaign sub-type

subject
string
requerido

The email subject

type
string
requerido

The campaign type

Last modified on April 14, 2026