HubSpot · JSON Structure

Marketing Emal Api Paging Structure

Pagination information

Type: object Properties: 1
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Paging is a JSON Structure definition published by HubSpot, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

next

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/marketing-emal-api-paging-structure.json",
  "name": "Paging",
  "description": "Pagination information",
  "type": "object",
  "properties": {
    "next": {
      "type": "object",
      "description": "Information about the next page",
      "required": [
        "after"
      ],
      "properties": {
        "after": {
          "type": "string",
          "description": "Cursor for the next page",
          "example": "c210cC10b2tlbi1hYmMxMjM%3D"
        },
        "link": {
          "type": "string",
          "description": "Link to the next page",
          "example": "https://app.hubspot.com/contacts/12345"
        }
      }
    }
  }
}