HubSpot · JSON Structure

Hubspot Crm Feature Flags Batch Error Structure

Represents an error that occurred for a specific item in a batch operation

Type: object Properties: 4 Required: 3
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

BatchError is a JSON Structure definition published by HubSpot, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

status category message context

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Represents an error that occurred for a specific item in a batch operation",
  "name": "BatchError",
  "properties": {
    "status": {
      "type": "string",
      "description": "Error status code"
    },
    "category": {
      "type": "string",
      "description": "Error category"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "context": {
      "type": "object",
      "description": "Additional context about the error"
    }
  },
  "required": [
    "status",
    "category",
    "message"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}