HubSpot · JSON Structure

Commerce Payments Api Paging Structure

Pagination information

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

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

Properties

next prev

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/commerce-payments-api-paging-structure.json",
  "name": "Paging",
  "description": "Pagination information",
  "type": "object",
  "properties": {
    "next": {
      "type": "object",
      "properties": {
        "after": {
          "type": "string",
          "description": "Cursor for the next page"
        },
        "link": {
          "type": "string",
          "description": "Link to the next page"
        }
      },
      "example": {
        "after": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      }
    },
    "prev": {
      "type": "object",
      "properties": {
        "before": {
          "type": "string",
          "description": "Cursor for the previous page"
        },
        "link": {
          "type": "string",
          "description": "Link to the previous page"
        }
      },
      "example": {
        "before": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      }
    }
  }
}