HubSpot · JSON Structure

Hubspot Commerce Payments Batch Archive Request Structure

Request body for batch archiving commerce payments

Type: object Properties: 1 Required: 1
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

BatchArchiveRequest is a JSON Structure definition published by HubSpot, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

inputs

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Request body for batch archiving commerce payments",
  "name": "BatchArchiveRequest",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "List of payment identifiers to archive",
      "items": {
        "type": "object",
        "description": "A single input item for batch read",
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the payment to read"
          }
        },
        "required": [
          "id"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}