HubSpot · Schema

AttachToLanguageGroupRequest

Request to attach an author to a multi-language group

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
id string ID of the author to attach
language string Language code for the author (e.g., es, fr, de)
primaryId string ID of the primary language author
primaryLanguage string Language code of the primary author
View JSON Schema on GitHub

JSON Schema

hubspot-authors-attach-to-language-group-request-schema.json Raw ↑
{
  "type": "object",
  "description": "Request to attach an author to a multi-language group",
  "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"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AttachToLanguageGroupRequest"
}