HubSpot · Schema

CloneRequest

Request to clone a blog post

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
id string ID of the blog post to clone
View JSON Schema on GitHub

JSON Schema

blog-posts-api-clone-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/blog-posts-api-clone-request-schema.json",
  "title": "CloneRequest",
  "description": "Request to clone a blog post",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the blog post to clone",
      "example": "500123"
    }
  },
  "required": [
    "id"
  ]
}