← Aero Workflow

Create Contact with Aero Workflow API

Pipedream makes it easy to connect APIs for Aero Workflow and 1400+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Create Contact with the Aero Workflow API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Create Contact with the Aero Workflow API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Create Contact action
    1. Connect your Aero Workflow account
    2. Configure First Name
    3. Configure Last Name
    4. Optional- Configure Default Email Address
    5. Optional- Configure Office Phone
    6. Optional- Configure Home Phone
    7. Optional- Configure Mobile Phone
    8. Optional- Configure Facebook Url
    9. Optional- Configure LinkedIn Url
    10. Optional- Configure Title
    11. Optional- Configure Twitter Handle
    12. Optional- Configure Notes
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Create Contact with Aero Workflow API on New Requests from HTTP / Webhook API
HTTP / Webhook + Aero Workflow
 
Try it
Create Contact with Aero Workflow API on New Submission from Typeform API
Typeform + Aero Workflow
 
Try it
Create Contact with Aero Workflow API on New Submission (Instant) from Jotform API
Jotform + Aero Workflow
 
Try it
Create Contact with Aero Workflow API on New Custom Webhook Events from Stripe API
Stripe + Aero Workflow
 
Try it
Create Contact with Aero Workflow API on New Scheduled Tasks from Pipedream API
Pipedream + Aero Workflow
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Create Contact on Aero Workflow
Description:Creates a contact [See the docs here](https://api.aeroworkflow.com/swagger/index.html)
Version:0.0.1
Key:aero_workflow-create-contact

Code

import app from "../../aero_workflow.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "aero_workflow-create-contact",
  version: "0.0.1",
  type: "action",
  name: "Create Contact",
  description: "Creates a contact [See the docs here](https://api.aeroworkflow.com/swagger/index.html)",
  props: {
    app,
    firstName: {
      type: "string",
      label: "First Name",
      description: "First name of the contact",
    },
    lastName: {
      type: "string",
      label: "Last Name",
      description: "Last name of the contact",
    },
    defaultEmailAddress: {
      type: "string",
      label: "Default Email Address",
      description: "Default email address",
      optional: true,
    },
    officePhone: {
      type: "string",
      label: "Office Phone",
      description: "Office phone",
      optional: true,
    },
    homePhone: {
      type: "string",
      label: "Home Phone",
      description: "Home phone",
      optional: true,
    },
    mobilePhone: {
      type: "string",
      label: "Mobile Phone",
      description: "Mobile phone",
      optional: true,
    },
    facebookUrl: {
      type: "string",
      label: "Facebook Url",
      description: "Facebook url",
      optional: true,
    },
    linkedInUrl: {
      type: "string",
      label: "LinkedIn Url",
      description: "LinkedIn url",
      optional: true,
    },
    title: {
      type: "string",
      label: "Title",
      description: "Title",
      optional: true,
    },
    twitterHandle: {
      type: "string",
      label: "Twitter Handle",
      description: "Twitter handle",
      optional: true,
    },
    notes: {
      type: "string",
      label: "Notes",
      description: "Notes",
      optional: true,
    },
  },
  async run ({ $ }) {
    const data = utils.extractProps(this);
    const resp = await this.app.createContact({
      $,
      data,
    });
    $.export("$summary", `The contact(ID: ${resp.id}) has been created successfully.`);
    return resp;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Aero WorkflowappappThis component uses the Aero Workflow app.
First NamefirstNamestring

First name of the contact

Last NamelastNamestring

Last name of the contact

Default Email AddressdefaultEmailAddressstring

Default email address

Office PhoneofficePhonestring

Office phone

Home PhonehomePhonestring

Home phone

Mobile PhonemobilePhonestring

Mobile phone

Facebook UrlfacebookUrlstring

Facebook url

LinkedIn UrllinkedInUrlstring

LinkedIn url

Titletitlestring

Title

Twitter HandletwitterHandlestring

Twitter handle

Notesnotesstring

Notes

Authentication

Aero Workflow uses API keys for authentication. When you connect your Aero Workflow account, Pipedream securely stores the keys so you can easily authenticate to Aero Workflow APIs in both code and no-code steps.

To get your API Key and Account Number, navigate to Account Settings > Account Profile.

  • If you've already created an API Key it will be listed on this screen.
  • If there is no API Key listed, click the Generate new API Key button.
  • The Account Number (also sometimes called "Account ID") is listed below the API Key

About Aero Workflow

Aero is workflow & practice management built specifically with the modern cloud-based accounting firm in mind.

More Ways to Use Aero Workflow

Triggers

New Company Created Event from the Aero Workflow API

Emit new events when a new company is created. See the docs

 
Try it

Actions

Create Appointment with the Aero Workflow API

Creates an appointment See the docs here

 
Try it
Create Company with the Aero Workflow API

Creates a company See the docs here

 
Try it
Create Email Aero with the Aero Workflow API

Creates an email aero See the docs here

 
Try it
Create Task with the Aero Workflow API

Creates a task See the docs here

 
Try it
Create Vault Entry with the Aero Workflow API

Creates a vault entry for selected company See the docs here

 
Try it

Explore Other Apps

1
-
12
of
1400+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.