HubSpot · JSON Structure

Authors Api Attach To Language Group Request Structure

Request to attach an author to a multi-language group

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

AttachToLanguageGroupRequest is a JSON Structure definition published by HubSpot, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id language primaryId primaryLanguage

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/authors-api-attach-to-language-group-request-structure.json",
  "name": "AttachToLanguageGroupRequest",
  "description": "Request to attach an author to a multi-language group",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the author to attach",
      "example": "500123"
    },
    "language": {
      "type": "string",
      "description": "Language code for the author (e.g., es, fr, de)",
      "example": "en"
    },
    "primaryId": {
      "type": "string",
      "description": "ID of the primary language author",
      "example": "500123"
    },
    "primaryLanguage": {
      "type": "string",
      "description": "Language code of the primary author",
      "example": "en"
    }
  },
  "required": [
    "id",
    "language",
    "primaryId"
  ]
}