HubSpot · Arazzo Workflow

HubSpot Log a Meeting on a Deal

Version 1.0.0

Create a meeting engagement and associate it to a deal.

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

Provider

hubspot

Workflows

log-meeting-on-deal
Create a meeting engagement and associate it to a deal.
Creates a meeting engagement with the supplied properties, then associates the new meeting to the target deal and reads the meeting back to confirm it persisted.
3 steps inputs: associationType, dealId, hsMeetingBody, hsMeetingEndTime, hsMeetingStartTime, hsMeetingTitle outputs: createdAt, meetingId
1
createMeeting
createMeeting
Create the meeting engagement with the supplied title, body, and start and end times.
2
associateToDeal
createMeetingAssociation
Associate the newly created meeting to the target deal so it appears on the deal timeline.
3
confirmMeeting
getMeeting
Read the created meeting back by id to confirm the engagement persisted.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: HubSpot Log a Meeting on a Deal
  summary: Create a meeting engagement and associate it to a deal.
  description: >-
    A pipeline activity-logging pattern. The workflow creates a meeting
    engagement in the HubSpot CRM with the supplied meeting properties — title,
    body, start and end times — and then attaches that meeting to a deal through
    the meeting association endpoint so the meeting surfaces on the deal record.
    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
  x-realizes-capability-ids:
  - BC-420.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-420.10
      capability_name: Customer Data Management
      spec: hubspot-associations-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: associationsApi
  url: ../openapi/hubspot-associations-api-openapi.yml
  type: openapi
- name: meetingsApi
  url: ../openapi/hubspot-meetings-api-openapi.yml
  type: openapi
workflows:
- workflowId: log-meeting-on-deal
  summary: Create a meeting engagement and associate it to a deal.
  description: >-
    Creates a meeting engagement with the supplied properties, then associates
    the new meeting to the target deal and reads the meeting back to confirm it
    persisted.
  inputs:
    type: object
    required:
    - hsMeetingTitle
    - hsMeetingStartTime
    - dealId
    properties:
      hsMeetingTitle:
        type: string
        description: The title of the meeting (hs_meeting_title).
      hsMeetingBody:
        type: string
        description: Notes or agenda for the meeting (hs_meeting_body).
      hsMeetingStartTime:
        type: string
        description: ISO 8601 meeting start time (hs_meeting_start_time).
      hsMeetingEndTime:
        type: string
        description: ISO 8601 meeting end time (hs_meeting_end_time).
      dealId:
        type: string
        description: The ID of the deal to associate the meeting with.
      associationType:
        type: string
        description: The association type id linking the meeting to the deal.
        default: "212"
  steps:
  - stepId: createMeeting
    description: >-
      Create the meeting engagement with the supplied title, body, and start and
      end times.
    operationId: createMeeting
    requestBody:
      contentType: application/json
      payload:
        properties:
          hs_meeting_title: $inputs.hsMeetingTitle
          hs_meeting_body: $inputs.hsMeetingBody
          hs_meeting_start_time: $inputs.hsMeetingStartTime
          hs_meeting_end_time: $inputs.hsMeetingEndTime
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      meetingId: $response.body#/id
      createdAt: $response.body#/createdAt
  - stepId: associateToDeal
    description: >-
      Associate the newly created meeting to the target deal so it appears on
      the deal timeline.
    operationId: createMeetingAssociation
    parameters:
    - name: meetingId
      in: path
      value: $steps.createMeeting.outputs.meetingId
    - name: toObjectType
      in: path
      value: deals
    - name: toObjectId
      in: path
      value: $inputs.dealId
    - name: associationType
      in: path
      value: $inputs.associationType
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      association: $response.body
  - stepId: confirmMeeting
    description: >-
      Read the created meeting back by id to confirm the engagement persisted.
    operationId: getMeeting
    parameters:
    - name: meetingId
      in: path
      value: $steps.createMeeting.outputs.meetingId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      meetingId: $response.body#/id
      properties: $response.body#/properties
  outputs:
    meetingId: $steps.createMeeting.outputs.meetingId
    createdAt: $steps.createMeeting.outputs.createdAt

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-log-meeting-on-deal-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.