HubSpot · Capability

HubSpot Blog Authors API — Batch Operations

HubSpot Blog Authors API — Batch Operations. 4 operations. Lead operation: Hubspot Archive Multiple Blog Authors. Self-contained Naftiko capability covering one Hubspot business surface.

Run with Naftiko HubspotBatch Operations

What You Can Do

POST
Batcharchiveblogauthors — Hubspot Archive Multiple Blog Authors
/v1/cms/v3/blogs/authors/batch/archive
POST
Batchcreateblogauthors — Hubspot Create Multiple Blog Authors
/v1/cms/v3/blogs/authors/batch/create
POST
Batchreadblogauthors — Hubspot Read Multiple Blog Authors
/v1/cms/v3/blogs/authors/batch/read
POST
Batchupdateblogauthors — Hubspot Update Multiple Blog Authors
/v1/cms/v3/blogs/authors/batch/update

MCP Tools

hubspot-archive-multiple-blog-authors

Hubspot Archive Multiple Blog Authors

hubspot-create-multiple-blog-authors

Hubspot Create Multiple Blog Authors

hubspot-read-multiple-blog-authors

Hubspot Read Multiple Blog Authors

hubspot-update-multiple-blog-authors

Hubspot Update Multiple Blog Authors

Capability Spec

authors-batch-operations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HubSpot Blog Authors API — Batch Operations
  description: 'HubSpot Blog Authors API — Batch Operations. 4 operations. Lead operation: Hubspot Archive Multiple Blog Authors.
    Self-contained Naftiko capability covering one Hubspot business surface.'
  tags:
  - Hubspot
  - Batch Operations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUBSPOT_API_KEY: HUBSPOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: authors-batch-operations
    baseUri: https://api.hubapi.com
    description: HubSpot Blog Authors API — Batch Operations business capability. Self-contained, no shared references.
    resources:
    - name: cms-v3-blogs-authors-batch-archive
      path: /cms/v3/blogs/authors/batch/archive
      operations:
      - name: batcharchiveblogauthors
        method: POST
        description: Hubspot Archive Multiple Blog Authors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: cms-v3-blogs-authors-batch-create
      path: /cms/v3/blogs/authors/batch/create
      operations:
      - name: batchcreateblogauthors
        method: POST
        description: Hubspot Create Multiple Blog Authors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: cms-v3-blogs-authors-batch-read
      path: /cms/v3/blogs/authors/batch/read
      operations:
      - name: batchreadblogauthors
        method: POST
        description: Hubspot Read Multiple Blog Authors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: archived
          in: query
          type: boolean
          description: Whether to include archived authors
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: cms-v3-blogs-authors-batch-update
      path: /cms/v3/blogs/authors/batch/update
      operations:
      - name: batchupdateblogauthors
        method: POST
        description: Hubspot Update Multiple Blog Authors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: archived
          in: query
          type: boolean
          description: Whether to update archived authors
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.HUBSPOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: authors-batch-operations-rest
    port: 8080
    description: REST adapter for HubSpot Blog Authors API — Batch Operations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/cms/v3/blogs/authors/batch/archive
      name: cms-v3-blogs-authors-batch-archive
      description: REST surface for cms-v3-blogs-authors-batch-archive.
      operations:
      - method: POST
        name: batcharchiveblogauthors
        description: Hubspot Archive Multiple Blog Authors
        call: authors-batch-operations.batcharchiveblogauthors
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cms/v3/blogs/authors/batch/create
      name: cms-v3-blogs-authors-batch-create
      description: REST surface for cms-v3-blogs-authors-batch-create.
      operations:
      - method: POST
        name: batchcreateblogauthors
        description: Hubspot Create Multiple Blog Authors
        call: authors-batch-operations.batchcreateblogauthors
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cms/v3/blogs/authors/batch/read
      name: cms-v3-blogs-authors-batch-read
      description: REST surface for cms-v3-blogs-authors-batch-read.
      operations:
      - method: POST
        name: batchreadblogauthors
        description: Hubspot Read Multiple Blog Authors
        call: authors-batch-operations.batchreadblogauthors
        with:
          archived: rest.archived
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cms/v3/blogs/authors/batch/update
      name: cms-v3-blogs-authors-batch-update
      description: REST surface for cms-v3-blogs-authors-batch-update.
      operations:
      - method: POST
        name: batchupdateblogauthors
        description: Hubspot Update Multiple Blog Authors
        call: authors-batch-operations.batchupdateblogauthors
        with:
          archived: rest.archived
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: authors-batch-operations-mcp
    port: 9090
    transport: http
    description: MCP adapter for HubSpot Blog Authors API — Batch Operations. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: hubspot-archive-multiple-blog-authors
      description: Hubspot Archive Multiple Blog Authors
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: authors-batch-operations.batcharchiveblogauthors
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-create-multiple-blog-authors
      description: Hubspot Create Multiple Blog Authors
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: authors-batch-operations.batchcreateblogauthors
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-read-multiple-blog-authors
      description: Hubspot Read Multiple Blog Authors
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: authors-batch-operations.batchreadblogauthors
      with:
        archived: tools.archived
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-update-multiple-blog-authors
      description: Hubspot Update Multiple Blog Authors
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: authors-batch-operations.batchupdateblogauthors
      with:
        archived: tools.archived
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.