HubSpot · Schema

Paging

Pagination information for the response.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
next object Information for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

hubspot-crm-search-paging-schema.json Raw ↑
{
  "type": "object",
  "description": "Pagination information for the response.",
  "properties": {
    "next": {
      "type": "object",
      "description": "Information for retrieving the next page of results.",
      "example": {
        "after": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      },
      "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."
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Paging"
}