HubSpot · Capability

HubSpot Blog Authors API — Blog Authors

HubSpot Blog Authors API — Blog Authors. 5 operations. Lead operation: Hubspot List All Blog Authors. Self-contained Naftiko capability covering one Hubspot business surface.

Run with Naftiko HubspotBlog Authors

What You Can Do

GET
Listblogauthors — Hubspot List All Blog Authors
/v1/cms/v3/blogs/authors
POST
Createblogauthor — Hubspot Create a Blog Author
/v1/cms/v3/blogs/authors
GET
Getblogauthorbyid — Hubspot Retrieve a Blog Author
/v1/cms/v3/blogs/authors/{objectid}
PATCH
Updateblogauthor — Hubspot Update a Blog Author
/v1/cms/v3/blogs/authors/{objectid}
DELETE
Archiveblogauthor — Hubspot Archive a Blog Author
/v1/cms/v3/blogs/authors/{objectid}

MCP Tools

hubspot-list-all-blog-authors

Hubspot List All Blog Authors

read-only idempotent
hubspot-create-blog-author

Hubspot Create a Blog Author

hubspot-retrieve-blog-author

Hubspot Retrieve a Blog Author

read-only idempotent
hubspot-update-blog-author

Hubspot Update a Blog Author

idempotent
hubspot-archive-blog-author

Hubspot Archive a Blog Author

idempotent

Capability Spec

authors-blog-authors.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HubSpot Blog Authors API — Blog Authors
  description: 'HubSpot Blog Authors API — Blog Authors. 5 operations. Lead operation: Hubspot List All Blog Authors. Self-contained
    Naftiko capability covering one Hubspot business surface.'
  tags:
  - Hubspot
  - Blog Authors
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUBSPOT_API_KEY: HUBSPOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: authors-blog-authors
    baseUri: https://api.hubapi.com
    description: HubSpot Blog Authors API — Blog Authors business capability. Self-contained, no shared references.
    resources:
    - name: cms-v3-blogs-authors
      path: /cms/v3/blogs/authors
      operations:
      - name: listblogauthors
        method: GET
        description: Hubspot List All Blog Authors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Maximum number of results per page (1-100)
        - name: after
          in: query
          type: string
          description: Pagination cursor for the next page
        - name: sort
          in: query
          type: array
          description: Properties to sort by
        - name: archived
          in: query
          type: boolean
          description: Whether to return archived authors
        - name: property
          in: query
          type: string
          description: Specific property to return
      - name: createblogauthor
        method: POST
        description: Hubspot Create a Blog Author
        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-objectId
      path: /cms/v3/blogs/authors/{objectId}
      operations:
      - name: getblogauthorbyid
        method: GET
        description: Hubspot Retrieve a Blog Author
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: objectId
          in: path
          type: string
          description: The unique identifier of the blog author
          required: true
        - name: archived
          in: query
          type: boolean
          description: Whether to return archived authors
        - name: property
          in: query
          type: string
          description: Specific property to return
      - name: updateblogauthor
        method: PATCH
        description: Hubspot Update a Blog Author
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: objectId
          in: path
          type: string
          description: The unique identifier of the blog author
          required: true
        - name: archived
          in: query
          type: boolean
          description: Whether to update archived authors
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: archiveblogauthor
        method: DELETE
        description: Hubspot Archive a Blog Author
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: objectId
          in: path
          type: string
          description: The unique identifier of the blog author
          required: true
        - name: archived
          in: query
          type: boolean
          description: Whether to return archived authors
    authentication:
      type: bearer
      token: '{{env.HUBSPOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: authors-blog-authors-rest
    port: 8080
    description: REST adapter for HubSpot Blog Authors API — Blog Authors. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cms/v3/blogs/authors
      name: cms-v3-blogs-authors
      description: REST surface for cms-v3-blogs-authors.
      operations:
      - method: GET
        name: listblogauthors
        description: Hubspot List All Blog Authors
        call: authors-blog-authors.listblogauthors
        with:
          limit: rest.limit
          after: rest.after
          sort: rest.sort
          archived: rest.archived
          property: rest.property
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createblogauthor
        description: Hubspot Create a Blog Author
        call: authors-blog-authors.createblogauthor
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cms/v3/blogs/authors/{objectid}
      name: cms-v3-blogs-authors-objectid
      description: REST surface for cms-v3-blogs-authors-objectId.
      operations:
      - method: GET
        name: getblogauthorbyid
        description: Hubspot Retrieve a Blog Author
        call: authors-blog-authors.getblogauthorbyid
        with:
          objectId: rest.objectId
          archived: rest.archived
          property: rest.property
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateblogauthor
        description: Hubspot Update a Blog Author
        call: authors-blog-authors.updateblogauthor
        with:
          objectId: rest.objectId
          archived: rest.archived
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: archiveblogauthor
        description: Hubspot Archive a Blog Author
        call: authors-blog-authors.archiveblogauthor
        with:
          objectId: rest.objectId
          archived: rest.archived
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: authors-blog-authors-mcp
    port: 9090
    transport: http
    description: MCP adapter for HubSpot Blog Authors API — Blog Authors. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: hubspot-list-all-blog-authors
      description: Hubspot List All Blog Authors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: authors-blog-authors.listblogauthors
      with:
        limit: tools.limit
        after: tools.after
        sort: tools.sort
        archived: tools.archived
        property: tools.property
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-create-blog-author
      description: Hubspot Create a Blog Author
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: authors-blog-authors.createblogauthor
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-retrieve-blog-author
      description: Hubspot Retrieve a Blog Author
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: authors-blog-authors.getblogauthorbyid
      with:
        objectId: tools.objectId
        archived: tools.archived
        property: tools.property
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-update-blog-author
      description: Hubspot Update a Blog Author
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: authors-blog-authors.updateblogauthor
      with:
        objectId: tools.objectId
        archived: tools.archived
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-archive-blog-author
      description: Hubspot Archive a Blog Author
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: authors-blog-authors.archiveblogauthor
      with:
        objectId: tools.objectId
        archived: tools.archived
      outputParameters:
      - type: object
        mapping: $.