HubSpot · Arazzo Workflow

HubSpot Manage a HubDB Table

Version 1.0.0

Create a HubDB table, add a row to its draft, then publish the table.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationSalesArazzoWorkflows

Provider

hubspot

Workflows

manage-hubdb-table
Provision a HubDB table, seed it with a row, and publish it live.
Creates a draft HubDB table, captures its identifier, adds a row to the draft, and publishes the table draft so the structure and row are live.
3 steps inputs: columns, label, name, values outputs: publishedAt, rowId, tableId
1
createTable
createHubDBTable
Create a new HubDB table in draft state using the supplied name, label, and column definitions.
2
addRow
addHubDBTableRow
Add a single row to the draft version of the newly created table using the supplied column values.
3
publishTable
publishHubDBTableDraft
Publish the table draft so the new schema and row become live and available for CMS pages.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: HubSpot Manage a HubDB Table
  summary: Create a HubDB table, add a row to its draft, then publish the table.
  description: >-
    A end-to-end HubDB provisioning flow. The workflow creates a new HubDB table
    with the supplied column definitions, adds a single row to the table's draft
    version, and then publishes the table draft so both the schema and the new
    row become live for CMS page use. Every step spells out its request inline so
    the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: rowsApi
  url: ../openapi/hubspot-rows-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/hubspot-tables-api-openapi.yml
  type: openapi
workflows:
- workflowId: manage-hubdb-table
  summary: Provision a HubDB table, seed it with a row, and publish it live.
  description: >-
    Creates a draft HubDB table, captures its identifier, adds a row to the
    draft, and publishes the table draft so the structure and row are live.
  inputs:
    type: object
    required:
    - name
    - label
    - columns
    - values
    properties:
      name:
        type: string
        description: The internal name of the HubDB table (used in API references).
      label:
        type: string
        description: The human-friendly label for the HubDB table.
      columns:
        type: array
        description: The column definitions for the table (name, label, type).
      values:
        type: object
        description: A map of column name to value for the row being added.
  steps:
  - stepId: createTable
    description: >-
      Create a new HubDB table in draft state using the supplied name, label,
      and column definitions.
    operationId: createHubDBTable
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        label: $inputs.label
        columns: $inputs.columns
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      tableId: $response.body#/id
  - stepId: addRow
    description: >-
      Add a single row to the draft version of the newly created table using the
      supplied column values.
    operationId: addHubDBTableRow
    parameters:
    - name: tableIdOrName
      in: path
      value: $steps.createTable.outputs.tableId
    requestBody:
      contentType: application/json
      payload:
        values: $inputs.values
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      rowId: $response.body#/id
  - stepId: publishTable
    description: >-
      Publish the table draft so the new schema and row become live and
      available for CMS pages.
    operationId: publishHubDBTableDraft
    parameters:
    - name: tableIdOrName
      in: path
      value: $steps.createTable.outputs.tableId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      publishedAt: $response.body#/publishedAt
  outputs:
    tableId: $steps.createTable.outputs.tableId
    rowId: $steps.addRow.outputs.rowId
    publishedAt: $steps.publishTable.outputs.publishedAt

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/hubspot-manage-hubdb-table-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.