HubSpot · Schema

AttachToLanguageGroupRequest

Request to attach to language group

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
id string ID of the post to attach
language string Language code for the post
primaryId string ID of the primary language post
primaryLanguage string Language code of the primary post
View JSON Schema on GitHub

JSON Schema

blog-posts-api-attach-to-language-group-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-attach-to-language-group-request-schema.json",
  "title": "AttachToLanguageGroupRequest",
  "description": "Request to attach to language group",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the post to attach",
      "example": "500123"
    },
    "language": {
      "type": "string",
      "description": "Language code for the post",
      "example": "en"
    },
    "primaryId": {
      "type": "string",
      "description": "ID of the primary language post",
      "example": "500123"
    },
    "primaryLanguage": {
      "type": "string",
      "description": "Language code of the primary post",
      "example": "en"
    }
  },
  "required": [
    "id",
    "language",
    "primaryId"
  ]
}