Cross-Provider Workflow

ActiveCampaign Contact to HubSpot and Email

Version 1.0.0

Create an ActiveCampaign contact, mirror to HubSpot, then welcome email.

1 workflow 3 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

activecampaign hubspot

Workflows

activecampaign-to-hubspot-email
Create an ActiveCampaign contact, mirror to HubSpot, then email.
Creates a contact in ActiveCampaign, mirrors the same email and name into HubSpot CRM, then sends a transactional welcome email through the HubSpot marketing email API.
3 steps inputs: email, emailTemplateId, firstName, lastName outputs: acContactId, emailStatus, hubspotId
1
create-ac-contact
$sourceDescriptions.activecampaignApi.create-a-new-contact
Create a new contact in ActiveCampaign.
2
mirror-to-hubspot
$sourceDescriptions.hubspotContactsApi.createContact
Mirror the contact into HubSpot CRM.
3
send-welcome
$sourceDescriptions.hubspotMarketingEmailApi.sendTransactionalEmail
Send a transactional welcome email through HubSpot.

Source API Descriptions

Arazzo Workflow Specification

crm-activecampaign-contact-to-hubspot-and-email-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: ActiveCampaign Contact to HubSpot and Email
  summary: Create an ActiveCampaign contact, mirror to HubSpot, then welcome email.
  description: >-
    A cross-provider workflow that captures a contact in ActiveCampaign, mirrors
    that person into the HubSpot CRM, and sends a transactional welcome email
    through HubSpot's marketing email API. Demonstrates promoting a marketing
    automation contact into the CRM and confirming with a templated email.
  version: 1.0.0
sourceDescriptions:
  - name: activecampaignApi
    url: https://raw.githubusercontent.com/api-evangelist/activecampaign/refs/heads/main/openapi/activecampaign-contacts-api-openapi.yml
    type: openapi
  - name: hubspotContactsApi
    url: https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/openapi/hubspot-contacts-api-openapi.yml
    type: openapi
  - name: hubspotMarketingEmailApi
    url: https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/openapi/hubspot-single-send-api-openapi.yml
    type: openapi
workflows:
  - workflowId: activecampaign-to-hubspot-email
    summary: Create an ActiveCampaign contact, mirror to HubSpot, then email.
    description: >-
      Creates a contact in ActiveCampaign, mirrors the same email and name into
      HubSpot CRM, then sends a transactional welcome email through the HubSpot
      marketing email API.
    inputs:
      type: object
      properties:
        email:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        emailTemplateId:
          type: integer
    steps:
      - stepId: create-ac-contact
        description: Create a new contact in ActiveCampaign.
        operationId: $sourceDescriptions.activecampaignApi.create-a-new-contact
        requestBody:
          contentType: application/json
          payload:
            contact:
              email: $inputs.email
              firstName: $inputs.firstName
              lastName: $inputs.lastName
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          acContactId: $response.body#/contact/id
      - stepId: mirror-to-hubspot
        description: Mirror the contact into HubSpot CRM.
        operationId: $sourceDescriptions.hubspotContactsApi.createContact
        requestBody:
          contentType: application/json
          payload:
            properties:
              email: $inputs.email
              firstname: $inputs.firstName
              lastname: $inputs.lastName
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          hubspotId: $response.body#/id
      - stepId: send-welcome
        description: Send a transactional welcome email through HubSpot.
        operationId: $sourceDescriptions.hubspotMarketingEmailApi.sendTransactionalEmail
        requestBody:
          contentType: application/json
          payload:
            emailId: $inputs.emailTemplateId
            message:
              to: $inputs.email
            contactProperties:
              firstname: $inputs.firstName
              lastname: $inputs.lastName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          emailStatus: $statusCode
    outputs:
      acContactId: $steps.create-ac-contact.outputs.acContactId
      hubspotId: $steps.mirror-to-hubspot.outputs.hubspotId
      emailStatus: $steps.send-welcome.outputs.emailStatus

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/crm-activecampaign-contact-to-hubspot-and-email-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.