HubSpot · Schema

FileUploadRequest

Request body for file upload operations

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
file string The file content to upload
View JSON Schema on GitHub

JSON Schema

source-code-api-file-upload-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/source-code-api-file-upload-request-schema.json",
  "title": "FileUploadRequest",
  "description": "Request body for file upload operations",
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "format": "binary",
      "description": "The file content to upload",
      "example": "example-value"
    }
  },
  "required": [
    "file"
  ]
}