HubSpot · JSON Structure

Crm Search Api Paging Structure

Pagination information for the response.

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/crm-search-api-paging-structure.json",
  "name": "Paging",
  "description": "Pagination information for the response.",
  "type": "object",
  "properties": {
    "next": {
      "type": "object",
      "description": "Information for retrieving the next page of results.",
      "properties": {
        "after": {
          "type": "string",
          "description": "The cursor token to use in the after parameter for the next page."
        },
        "link": {
          "type": "string",
          "description": "A URL link to the next page of results."
        }
      },
      "example": {
        "after": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      }
    }
  }
}