Pular para o conteúdo principal
GET
/
email
/
public
/
v1
/
campaigns
Get campaign IDs with recent activity for an account
curl --request GET \
  --url https://api.hubapi.com/email/public/v1/campaigns
{
  "hasMore": true,
  "offset": "<string>",
  "campaigns": [
    {
      "id": 123,
      "appId": 123,
      "appName": "<string>",
      "lastUpdatedTime": 123
    }
  ]
}

Parâmetros de consulta

offset
string

A key representing which page of results you would like

limit
integer

Limit the maximum number of results you would like returned.

Resposta

Recent campaign IDs retrieved successfully

hasMore
boolean
obrigatório

Whether there are more results available

offset
string
obrigatório

Offset token for pagination

campaigns
object[]
obrigatório
Last modified on April 13, 2026