← Moneybird + GitHub integrations

Create Branch with GitHub API on New Webhook event from Moneybird API

Pipedream makes it easy to connect APIs for GitHub, Moneybird and 2,000+ other apps remarkably fast.

Trigger workflow on
New Webhook event from the Moneybird API
Next, do this
Create Branch with the GitHub API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
4 min
Watch now ➜

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Moneybird trigger and GitHub action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Webhook event trigger
    1. Connect your Moneybird account
    2. Select one or more Webhook Events
  3. Configure the Create Branch action
    1. Connect your GitHub account
    2. Select a Repository
    3. Configure Branch Name
    4. Optional- Select a Source Branch
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are 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.

Trigger

Description:Emit new event on each webhook event. [See docs here](https://developer.moneybird.com/webhooks/)
Version:0.0.1
Key:moneybird-new-webhook-event

Moneybird Overview

The Moneybird API allows you to automate your finance and accounting tasks by enabling programmatic access to your Moneybird account. With the API, you can create invoices, manage contacts, record payments, and fetch financial reports. This integration with Pipedream allows you to streamline your financial operations by connecting Moneybird with other apps and services to automate workflows, sync data, and trigger actions based on financial events.

Trigger Code

import moneybird from "../../moneybird.app.mjs";
import constants from "../common/constants.mjs";

export default {
  name: "New Webhook event",
  version: "0.0.1",
  key: "moneybird-new-webhook-event",
  description: "Emit new event on each webhook event. [See docs here](https://developer.moneybird.com/webhooks/)",
  type: "source",
  dedupe: "unique",
  props: {
    moneybird,
    db: "$.service.db",
    http: "$.interface.http",
    events: {
      label: "Webhook Events",
      description: "The webhook events to listen",
      type: "string[]",
      options: constants.WEBHOOK_EVENTS,
    },
  },
  methods: {
    _getWebhookId() {
      return this.db.get("webhookId");
    },
    _setWebhookId(webhookId) {
      this.db.set("webhookId", webhookId);
    },
  },
  hooks: {
    async activate() {
      const response = await this.moneybird.createWebhook({
        url: this.http.endpoint,
        events: this.events,
      });

      this._setWebhookId(response.id);
    },
    async deactivate() {
      const webhookId = this._getWebhookId();
      await this.moneybird.removeWebhook(webhookId);
    },
  },
  async run(event) {
    const { body } = event;

    this.$emit(body.entity, {
      id: body.entity.id,
      summary: `New event ${body.action} for entity ${body.entity.id}`,
      ts: new Date(),
    });
  },
};

Trigger 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
MoneybirdmoneybirdappThis component uses the Moneybird app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Webhook Eventseventsstring[]Select a value from the drop down menu:{ "label": "Administration activated", "value": "administration_activated" }{ "label": "Administration added", "value": "administration_added" }{ "label": "Removal of administration requested", "value": "administration_cancelled" }{ "label": "Administration updated", "value": "administration_changed" }{ "label": "Removal of administration requested", "value": "administration_deleted" }{ "label": "Administration reactivated", "value": "administration_reactivated" }{ "label": "Administration deleted", "value": "administration_removed" }{ "label": "Administration suspended", "value": "administration_suspended" }{ "label": "Activated automatic linking of transactions", "value": "administration_automatic_bookers_activated" }{ "label": "Deactivated automatic linking of transactions", "value": "administration_automatic_bookers_deactivated" }{ "label": "Data analysis permission withdrawn", "value": "administration_data_analysis_permission_unset" }{ "label": "Data analysis permission given", "value": "administration_data_analysis_permission_set" }{ "label": "Administration changed", "value": "administration_details_edited" }{ "label": "Moneybird Payments activated", "value": "administration_moneybird_payments_activated" }{ "label": "Activated payments without proof", "value": "administration_payments_without_proof_activated" }{ "label": "Deactivated payments without proof", "value": "administration_payments_without_proof_deactivated" }{ "label": "Locked period updated", "value": "administration_update_period_locked_until" }{ "label": "Adviser updated", "value": "adviser_updated" }{ "label": "Adviser created", "value": "adviser_created" }{ "label": "Adviser deleted", "value": "adviser_deleted" }{ "label": "Profile image added", "value": "adviser_updated_photo" }{ "label": "E-mail about concept state sent", "value": "adviser_email_concept_state_sent" }{ "label": "E-mail about published state sent", "value": "adviser_email_published_state_sent" }{ "label": "Experience created", "value": "adviser_experience_created" }{ "label": "Experience updated", "value": "adviser_experience_updated" }{ "label": "Experience deleted", "value": "adviser_experience_deleted" }{ "label": "Education created", "value": "adviser_education_created" }{ "label": "Education updated", "value": "adviser_education_updated" }{ "label": "Education deleted", "value": "adviser_education_deleted" }{ "label": "Company created", "value": "adviser_company_created" }{ "label": "Company updated", "value": "adviser_company_updated" }{ "label": "Company image added", "value": "adviser_company_photo" }{ "label": "Location created", "value": "adviser_company_location_created" }{ "label": "Location deleted", "value": "adviser_company_location_deleted" }{ "label": "Location created", "value": "advisers_location_created" }{ "label": "Location deleted", "value": "advisers_location_deleted" }{ "label": "Moneybird card created", "value": "adyen_payment_instrument_created" }{ "label": "Moneybird card updated", "value": "adyen_payment_instrument_updated" }{ "label": "Booking rule created", "value": "booking_rule_created" }{ "label": "Booking rule updated", "value": "booking_rule_updated" }{ "label": "Booking rule deleted", "value": "booking_rule_destroyed" }{ "label": "Contact archived", "value": "contact_archived" }{ "label": "Contact activated", "value": "contact_activated" }{ "label": "Contact updated", "value": "contact_changed" }{ "label": "Contact created", "value": "contact_created" }{ "label": "Contact created through checkout", "value": "contact_created_from_checkout_order" }{ "label": "Contact deleted", "value": "contact_destroyed" }{ "label": "Mandate request failed", "value": "contact_mandate_request_failed" }{ "label": "Mandate request sent", "value": "contact_mandate_request_initiated" }{ "label": "Mandate request succeeded", "value": "contact_mandate_request_succeeded" }{ "label": "Contact was merged", "value": "contact_merged" }{ "label": "Contact person created", "value": "contact_person_created" }{ "label": "Contact person deleted", "value": "contact_person_destroyed" }{ "label": "Contact person updated", "value": "contact_person_updated" }{ "label": "Credit note created based on invoice", "value": "credit_invoice_created_from_original" }{ "label": "Default sender address updated", "value": "default_identity_updated" }{ "label": "Default VAT rate added", "value": "default_tax_rate_created" }{ "label": "Bank link activated", "value": "direct_bank_link_activated" }{ "label": "Direct debit batch created", "value": "direct_debit_transaction_created" }{ "label": "Direct debit batch deleted", "value": "direct_debit_transaction_deleted" }{ "label": "Attachment couldn't be saved from email", "value": "document_attachment_skipped" }{ "label": "Document created based on an original document", "value": "document_created_from_original" }{ "label": "Document deleted", "value": "document_destroyed" }{ "label": "Document expired", "value": "document_expired" }{ "label": "Recurring document created", "value": "document_recurred" }{ "label": "Document saved", "value": "document_saved" }{ "label": "Document received by email", "value": "document_saved_from_email" }{ "label": "Document received via Peppol", "value": "document_saved_from_si" }{ "label": "Layout added", "value": "document_style_created" }{ "label": "Layout deleted", "value": "document_style_destroyed" }{ "label": "Layout updated", "value": "document_style_updated" }{ "label": "Document updated", "value": "document_updated" }{ "label": "Sending from your own domain has been disabled.", "value": "email_domain_deactivated" }{ "label": "Your domain is verified.", "value": "email_domain_validated" }{ "label": "Quote accepted online", "value": "estimate_accepted_contact" }{ "label": "Quote billed", "value": "estimate_billed" }{ "label": "Quote created", "value": "estimate_created" }{ "label": "Quote created based on the original quote", "value": "estimate_created_from_original" }{ "label": "Quote deleted", "value": "estimate_destroyed" }{ "label": "Quote marked as accepted", "value": "estimate_mark_accepted" }{ "label": "Quote archived", "value": "estimate_mark_archived" }{ "label": "Quote billed", "value": "estimate_mark_billed" }{ "label": "Quote marked as expired", "value": "estimate_mark_late" }{ "label": "Quote marked as open", "value": "estimate_mark_open" }{ "label": "Quote marked as rejected", "value": "estimate_mark_rejected" }{ "label": "Quote sent by email", "value": "estimate_send_email" }{ "label": "Quote marked as sent manually", "value": "estimate_send_manually" }{ "label": "Quote sent to %{address}", "value": "estimate_send_post" }{ "label": "Sending by mail cancelled", "value": "estimate_send_post_cancelled" }{ "label": "Sent by mail by Moneybird", "value": "estimate_send_post_confirmation" }{ "label": "Quote signed by sender", "value": "estimate_signed_sender" }{ "label": "Quote has expired", "value": "estimate_state_changed_to_late" }{ "label": "Quote updated", "value": "estimate_updated" }{ "label": "External invoice created", "value": "external_sales_invoice_created" }{ "label": "External invoice deleted", "value": "external_sales_invoice_destroyed" }{ "label": "Marked external invoice as dubious", "value": "external_sales_invoice_marked_as_dubious" }{ "label": "External invoice marked as uncollectible", "value": "external_sales_invoice_marked_as_uncollectible" }{ "label": "External invoice updated", "value": "external_sales_invoice_updated" }{ "label": "External invoice has expired", "value": "external_sales_invoice_state_changed_to_late" }{ "label": "State of external invoice changed to open", "value": "external_sales_invoice_state_changed_to_open" }{ "label": "External invoice has been paid", "value": "external_sales_invoice_state_changed_to_paid" }{ "label": "External invoice changed to uncollectible", "value": "external_sales_invoice_state_changed_to_uncollectible" }{ "label": "Beta feature turned on", "value": "feature_preference_opt_in" }{ "label": "Beta feature turned off", "value": "feature_preference_opt_out" }{ "label": "Feed entry snoozed", "value": "feed_entry_snoozed" }{ "label": "Feed entry unsnoozed", "value": "feed_entry_unsnoozed" }{ "label": "Account activated", "value": "financial_account_activated" }{ "label": "Account added", "value": "financial_account_created" }{ "label": "Account deactivated", "value": "financial_account_deactivated" }{ "label": "Account deleted", "value": "financial_account_destroyed" }{ "label": "Bank link created", "value": "financial_account_bank_link_created" }{ "label": "Bank link removed", "value": "financial_account_bank_link_destroyed" }{ "label": "Bank link updated", "value": "financial_account_bank_link_updated" }{ "label": "Account name changed", "value": "financial_account_renamed" }{ "label": "Financial statement added", "value": "financial_statement_created" }{ "label": "Financial statement deleted", "value": "financial_statement_destroyed" }{ "label": "Financial statement updated", "value": "financial_statement_updated" }{ "label": "Goal completed", "value": "goal_completed" }{ "label": "Goal not completed", "value": "goal_uncompleted" }{ "label": "Sender address added", "value": "identity_created" }{ "label": "Sender address deleted", "value": "identity_destroyed" }{ "label": "Sender address updated", "value": "identity_updated" }{ "label": "Category activated", "value": "ledger_account_activated" }{ "label": "Transaction booked on category", "value": "ledger_account_booking_created" }{ "label": "Link between transaction and category deleted", "value": "ledger_account_booking_destroyed" }{ "label": "Category added", "value": "ledger_account_created" }{ "label": "Category deactivated", "value": "ledger_account_deactivated" }{ "label": "Category deleted", "value": "ledger_account_destroyed" }{ "label": "Category updated", "value": "ledger_account_updated" }{ "label": "Link with Mollie created", "value": "mollie_credential_created" }{ "label": "Link with Mollie removed", "value": "mollie_credential_destroyed" }{ "label": "Note created", "value": "note_created" }{ "label": "Note deleted", "value": "note_destroyed" }{ "label": "Order placed", "value": "order_created" }{ "label": "Payment deleted", "value": "payment_destroyed" }{ "label": "Transaction linked to a financial mutation", "value": "payment_linked_to_financial_mutation" }{ "label": "Payment registered for invoice", "value": "payment_registered" }{ "label": "Thank You email was sent for payment", "value": "payment_send_email" }{ "label": "Payment method updated", "value": "payment_method_edited" }{ "label": "Direct debit transaction approved by bank", "value": "payment_transaction_authorized" }{ "label": "Direct debit transaction waiting for approval by bank", "value": "payment_transaction_awaiting_authorization" }{ "label": "Payment batch cancelled", "value": "payment_transaction_batch_cancelled" }{ "label": "Payment batch created", "value": "payment_transaction_batch_created" }{ "label": "Direct debit transaction being executing", "value": "payment_transaction_executing" }{ "label": "Direct debit transaction accepted", "value": "payment_transaction_paid" }{ "label": "Direct debit transaction pending", "value": "payment_transaction_pending" }{ "label": "Direct debit transaction rejected", "value": "payment_transaction_rejected" }{ "label": "Direct debit payment is technically approved by the bank", "value": "payment_transaction_technically_validated" }{ "label": "Ponto is connected", "value": "ponto_connected" }{ "label": "Ponto connection deleted", "value": "ponto_disconnected" }{ "label": "Ponto bank link activated", "value": "ponto_direct_bank_link_activated" }{ "label": "Ponto bank link expired", "value": "ponto_direct_bank_link_expired" }{ "label": "Product activated", "value": "product_activated" }{ "label": "Product created", "value": "product_created" }{ "label": "Product deactivated", "value": "product_deactivated" }{ "label": "Product deleted", "value": "product_destroyed" }{ "label": "Product updated", "value": "product_updated" }{ "label": "Project activated", "value": "project_activated" }{ "label": "Project added", "value": "project_created" }{ "label": "Project deactivated", "value": "project_archived" }{ "label": "Project deleted", "value": "project_destroyed" }{ "label": "Project updated", "value": "project_updated" }{ "label": "Transaction added to credit transfer batch", "value": "purchase_transaction_added_to_batch" }{ "label": "Payment authorized at bank", "value": "purchase_transaction_authorized" }{ "label": "Payment awaiting authorization at bank", "value": "purchase_transaction_awaiting_authorization" }{ "label": "Credit transfer batch cancelled", "value": "purchase_transaction_batch_cancelled" }{ "label": "Purchase transaction batch created", "value": "purchase_transaction_batch_created" }{ "label": "Transaction created", "value": "purchase_transaction_created" }{ "label": "Transaction deleted", "value": "purchase_transaction_deleted" }{ "label": "Payment in execution", "value": "purchase_transaction_executing" }{ "label": "Payment succeeded", "value": "purchase_transaction_paid" }{ "label": "Payment pending", "value": "purchase_transaction_pending" }{ "label": "Payment rejected", "value": "purchase_transaction_rejected" }{ "label": "Payment technically approved by the bank", "value": "purchase_transaction_technically_validated" }{ "label": "The invoice could not be sent automatically, sending automatically is disabled", "value": "recurring_sales_invoice_auto_send_forcefully_disabled" }{ "label": "Recurring invoice created", "value": "recurring_sales_invoice_created" }{ "label": "Recurring sales invoice created based on original invoice", "value": "recurring_sales_invoice_created_from_original" }{ "label": "Recurring invoices created based on the original recurring invoice", "value": "recurring_sales_invoice_created_from_original_recurring" }{ "label": "You have reached the maximum amount of invoices for this month. The recurring invoice is not created.", "value": "recurring_sales_invoice_creating_skipped_due_to_limits" }{ "label": "Recurring invoice deactivated", "value": "recurring_sales_invoice_deactivated" }{ "label": "Recurring invoice deleted", "value": "recurring_sales_invoice_destroyed" }{ "label": "Sales invoice created", "value": "recurring_sales_invoice_invoice_created" }{ "label": "Sending automatically enabled", "value": "recurring_sales_invoice_started_auto_send" }{ "label": "Sending automatically disabled", "value": "recurring_sales_invoice_stopped_auto_send" }{ "label": "Recurring invoice updated", "value": "recurring_sales_invoice_updated" }{ "label": "Invoice created", "value": "sales_invoice_created" }{ "label": "Invoice created based on quote", "value": "sales_invoice_created_based_on_estimate" }{ "label": "Invoice created based on recurring invoice", "value": "sales_invoice_created_based_on_recurring" }{ "label": "Invoice created based on subscription", "value": "sales_invoice_created_based_on_subscription" }{ "label": "Sales invoice created through checkout", "value": "sales_invoice_created_from_checkout_order" }{ "label": "Invoice created based on original invoice", "value": "sales_invoice_created_from_original" }{ "label": "Invoice deleted", "value": "sales_invoice_destroyed" }{ "label": "Invoice marked as dubious", "value": "sales_invoice_marked_as_dubious" }{ "label": "Invoice was marked as irrecoverable", "value": "sales_invoice_marked_as_uncollectible" }{ "label": "Invoice has been merged with another invoice before sending", "value": "sales_invoice_merged" }{ "label": "Invoice has been merged with other recurring invoices before sending", "value": "sales_invoice_merged_with_recurring_sales_invoice" }{ "label": "Processing of invoice has been paused", "value": "sales_invoice_paused" }{ "label": "Revert marking as dubious", "value": "sales_invoice_revert_dubious" }{ "label": "Invoice marked as uncollectible", "value": "sales_invoice_revert_uncollectible" }{ "label": "Invoice sent by email", "value": "sales_invoice_send_email" }{ "label": "Invoice manually marked as sent", "value": "sales_invoice_send_manually" }{ "label": "Invoice sent by mail", "value": "sales_invoice_send_post" }{ "label": "Invoice sent via mail by Moneybird", "value": "sales_invoice_send_post_confirmation" }{ "label": "Sending by mail cancelled", "value": "sales_invoice_send_post_cancelled" }{ "label": "Reminder for this sales invoice sent by email", "value": "sales_invoice_send_reminder_email" }{ "label": "Reminder sent manually", "value": "sales_invoice_send_reminder_manually" }{ "label": "Reminder sent by mail", "value": "sales_invoice_send_reminder_post" }{ "label": "Invoice reminder sent by mail by Moneybird", "value": "sales_invoice_send_reminder_post_confirmation" }{ "label": "Invoice sent via Peppol", "value": "sales_invoice_send_si" }{ "label": "Received Peppol delivery notification", "value": "sales_invoice_send_si_delivered" }{ "label": "An error occurred while sending via Peppol", "value": "sales_invoice_send_si_error" }{ "label": "Invoice forwarded to Online incasso", "value": "sales_invoice_send_to_payt" }{ "label": "Invoice state changed to draft", "value": "sales_invoice_state_changed_to_draft" }{ "label": "Invoice has expired", "value": "sales_invoice_state_changed_to_late" }{ "label": "State of invoice changed to open", "value": "sales_invoice_state_changed_to_open" }{ "label": "Invoice has been paid", "value": "sales_invoice_state_changed_to_paid" }{ "label": "Invoice is pending payment", "value": "sales_invoice_state_changed_to_pending_payment" }{ "label": "Invoice state changed to reminded", "value": "sales_invoice_state_changed_to_reminded" }{ "label": "Invoice state changed to scheduled", "value": "sales_invoice_state_changed_to_scheduled" }{ "label": "Invoice state changed to uncollectible", "value": "sales_invoice_state_changed_to_uncollectible" }{ "label": "Processing of invoice has been resumed", "value": "sales_invoice_unpaused" }{ "label": "Invoice updated", "value": "sales_invoice_updated" }{ "label": "Payment notification email sent", "value": "send_payment_email" }{ "label": "Email after a failed payment sent", "value": "send_payment_unsuccessful_email" }{ "label": "Step assigned", "value": "subgoal_assigned" }{ "label": "Step completed", "value": "subgoal_completed" }{ "label": "Step not completed", "value": "subgoal_uncompleted" }{ "label": "Subscription cancelled", "value": "subscription_cancelled" }{ "label": "Subscription created", "value": "subscription_created" }{ "label": "Subscription deleted", "value": "subscription_destroyed" }{ "label": "Plan changed", "value": "subscription_edited" }{ "label": "Subscription updated", "value": "subscription_updated" }{ "label": "Activate VAT rate", "value": "tax_rate_activated" }{ "label": "VAT rate added", "value": "tax_rate_created" }{ "label": "VAT rate deactivated", "value": "tax_rate_deactivated" }{ "label": "VAT rate deleted", "value": "tax_rate_destroyed" }{ "label": "VAT rate updated", "value": "tax_rate_updated" }{ "label": "Time entry created", "value": "time_entry_created" }{ "label": "Time entry destroyed", "value": "time_entry_destroyed" }{ "label": "Time entry invoiced", "value": "time_entry_sales_invoice_created" }{ "label": "Time entry updated", "value": "time_entry_updated" }{ "label": "To-do completed", "value": "todo_completed" }{ "label": "To-do added", "value": "todo_created" }{ "label": "To-do deleted", "value": "todo_destroyed" }{ "label": "To-do viewed", "value": "todo_opened" }{ "label": "Ultimate beneficial owner created", "value": "ultimate_benificial_owner_created" }{ "label": "Ultimate beneficial owner updated", "value": "ultimate_benificial_owner_updated" }{ "label": "User invited", "value": "user_invited" }{ "label": "User invited for a call", "value": "user_invited_for_call" }{ "label": "User deleted", "value": "user_removed" }{ "label": "VAT-return filed", "value": "vat_return_created" }{ "label": "VAT-return is received by the tax authorities", "value": "vat_return_received" }{ "label": "VAT-return paid", "value": "vat_return_paid" }{ "label": "Digital VAT suppletion submitted", "value": "vat_suppletion_created" }{ "label": "Electronic vat-suppletion is received by the tax authority", "value": "vat_suppletion_received" }{ "label": "Workflow added", "value": "workflow_created" }{ "label": "Workflow deactivated", "value": "workflow_deactivated" }{ "label": "Workflow deleted", "value": "workflow_destroyed" }{ "label": "Workflow updated", "value": "workflow_updated" }{ "label": "Trigger", "value": "Event" }{ "label": "Administration activated", "value": "administration_activated" }{ "label": "Administration added", "value": "administration_added" }{ "label": "Removal of administration requested", "value": "administration_cancelled" }{ "label": "Administration updated", "value": "administration_changed" }{ "label": "Removal of administration requested", "value": "administration_deleted" }{ "label": "Administration reactivated", "value": "administration_reactivated" }{ "label": "Administration deleted", "value": "administration_removed" }{ "label": "Administration suspended", "value": "administration_suspended" }{ "label": "Activated automatic linking of transactions", "value": "administration_automatic_bookers_activated" }{ "label": "Deactivated automatic linking of transactions", "value": "administration_automatic_bookers_deactivated" }{ "label": "Data analysis permission withdrawn", "value": "administration_data_analysis_permission_unset" }{ "label": "Data analysis permission given", "value": "administration_data_analysis_permission_set" }{ "label": "Administration changed", "value": "administration_details_edited" }{ "label": "Moneybird Payments activated", "value": "administration_moneybird_payments_activated" }{ "label": "Activated payments without proof", "value": "administration_payments_without_proof_activated" }{ "label": "Deactivated payments without proof", "value": "administration_payments_without_proof_deactivated" }{ "label": "Locked period updated", "value": "administration_update_period_locked_until" }{ "label": "Adviser updated", "value": "adviser_updated" }{ "label": "Adviser created", "value": "adviser_created" }{ "label": "Adviser deleted", "value": "adviser_deleted" }{ "label": "Profile image added", "value": "adviser_updated_photo" }{ "label": "E-mail about concept state sent", "value": "adviser_email_concept_state_sent" }{ "label": "E-mail about published state sent", "value": "adviser_email_published_state_sent" }{ "label": "Experience created", "value": "adviser_experience_created" }{ "label": "Experience updated", "value": "adviser_experience_updated" }{ "label": "Experience deleted", "value": "adviser_experience_deleted" }{ "label": "Education created", "value": "adviser_education_created" }{ "label": "Education updated", "value": "adviser_education_updated" }{ "label": "Education deleted", "value": "adviser_education_deleted" }{ "label": "Company created", "value": "adviser_company_created" }{ "label": "Company updated", "value": "adviser_company_updated" }{ "label": "Company image added", "value": "adviser_company_photo" }{ "label": "Location created", "value": "adviser_company_location_created" }{ "label": "Location deleted", "value": "adviser_company_location_deleted" }{ "label": "Location created", "value": "advisers_location_created" }{ "label": "Location deleted", "value": "advisers_location_deleted" }{ "label": "Moneybird card created", "value": "adyen_payment_instrument_created" }{ "label": "Moneybird card updated", "value": "adyen_payment_instrument_updated" }{ "label": "Booking rule created", "value": "booking_rule_created" }{ "label": "Booking rule updated", "value": "booking_rule_updated" }{ "label": "Booking rule deleted", "value": "booking_rule_destroyed" }{ "label": "Contact archived", "value": "contact_archived" }{ "label": "Contact activated", "value": "contact_activated" }{ "label": "Contact updated", "value": "contact_changed" }{ "label": "Contact created", "value": "contact_created" }{ "label": "Contact created through checkout", "value": "contact_created_from_checkout_order" }{ "label": "Contact deleted", "value": "contact_destroyed" }{ "label": "Mandate request failed", "value": "contact_mandate_request_failed" }{ "label": "Mandate request sent", "value": "contact_mandate_request_initiated" }{ "label": "Mandate request succeeded", "value": "contact_mandate_request_succeeded" }{ "label": "Contact was merged", "value": "contact_merged" }{ "label": "Contact person created", "value": "contact_person_created" }{ "label": "Contact person deleted", "value": "contact_person_destroyed" }{ "label": "Contact person updated", "value": "contact_person_updated" }{ "label": "Credit note created based on invoice", "value": "credit_invoice_created_from_original" }{ "label": "Default sender address updated", "value": "default_identity_updated" }{ "label": "Default VAT rate added", "value": "default_tax_rate_created" }{ "label": "Bank link activated", "value": "direct_bank_link_activated" }{ "label": "Direct debit batch created", "value": "direct_debit_transaction_created" }{ "label": "Direct debit batch deleted", "value": "direct_debit_transaction_deleted" }{ "label": "Attachment couldn't be saved from email", "value": "document_attachment_skipped" }{ "label": "Document created based on an original document", "value": "document_created_from_original" }{ "label": "Document deleted", "value": "document_destroyed" }{ "label": "Document expired", "value": "document_expired" }{ "label": "Recurring document created", "value": "document_recurred" }{ "label": "Document saved", "value": "document_saved" }{ "label": "Document received by email", "value": "document_saved_from_email" }{ "label": "Document received via Peppol", "value": "document_saved_from_si" }{ "label": "Layout added", "value": "document_style_created" }{ "label": "Layout deleted", "value": "document_style_destroyed" }{ "label": "Layout updated", "value": "document_style_updated" }{ "label": "Document updated", "value": "document_updated" }{ "label": "Sending from your own domain has been disabled.", "value": "email_domain_deactivated" }{ "label": "Your domain is verified.", "value": "email_domain_validated" }{ "label": "Quote accepted online", "value": "estimate_accepted_contact" }{ "label": "Quote billed", "value": "estimate_billed" }{ "label": "Quote created", "value": "estimate_created" }{ "label": "Quote created based on the original quote", "value": "estimate_created_from_original" }{ "label": "Quote deleted", "value": "estimate_destroyed" }{ "label": "Quote marked as accepted", "value": "estimate_mark_accepted" }{ "label": "Quote archived", "value": "estimate_mark_archived" }{ "label": "Quote billed", "value": "estimate_mark_billed" }{ "label": "Quote marked as expired", "value": "estimate_mark_late" }{ "label": "Quote marked as open", "value": "estimate_mark_open" }{ "label": "Quote marked as rejected", "value": "estimate_mark_rejected" }{ "label": "Quote sent by email", "value": "estimate_send_email" }{ "label": "Quote marked as sent manually", "value": "estimate_send_manually" }{ "label": "Quote sent to %{address}", "value": "estimate_send_post" }{ "label": "Sending by mail cancelled", "value": "estimate_send_post_cancelled" }{ "label": "Sent by mail by Moneybird", "value": "estimate_send_post_confirmation" }{ "label": "Quote signed by sender", "value": "estimate_signed_sender" }{ "label": "Quote has expired", "value": "estimate_state_changed_to_late" }{ "label": "Quote updated", "value": "estimate_updated" }{ "label": "External invoice created", "value": "external_sales_invoice_created" }{ "label": "External invoice deleted", "value": "external_sales_invoice_destroyed" }{ "label": "Marked external invoice as dubious", "value": "external_sales_invoice_marked_as_dubious" }{ "label": "External invoice marked as uncollectible", "value": "external_sales_invoice_marked_as_uncollectible" }{ "label": "External invoice updated", "value": "external_sales_invoice_updated" }{ "label": "External invoice has expired", "value": "external_sales_invoice_state_changed_to_late" }{ "label": "State of external invoice changed to open", "value": "external_sales_invoice_state_changed_to_open" }{ "label": "External invoice has been paid", "value": "external_sales_invoice_state_changed_to_paid" }{ "label": "External invoice changed to uncollectible", "value": "external_sales_invoice_state_changed_to_uncollectible" }{ "label": "Beta feature turned on", "value": "feature_preference_opt_in" }{ "label": "Beta feature turned off", "value": "feature_preference_opt_out" }{ "label": "Feed entry snoozed", "value": "feed_entry_snoozed" }{ "label": "Feed entry unsnoozed", "value": "feed_entry_unsnoozed" }{ "label": "Account activated", "value": "financial_account_activated" }{ "label": "Account added", "value": "financial_account_created" }{ "label": "Account deactivated", "value": "financial_account_deactivated" }{ "label": "Account deleted", "value": "financial_account_destroyed" }{ "label": "Bank link created", "value": "financial_account_bank_link_created" }{ "label": "Bank link removed", "value": "financial_account_bank_link_destroyed" }{ "label": "Bank link updated", "value": "financial_account_bank_link_updated" }{ "label": "Account name changed", "value": "financial_account_renamed" }{ "label": "Financial statement added", "value": "financial_statement_created" }{ "label": "Financial statement deleted", "value": "financial_statement_destroyed" }{ "label": "Financial statement updated", "value": "financial_statement_updated" }{ "label": "Goal completed", "value": "goal_completed" }{ "label": "Goal not completed", "value": "goal_uncompleted" }{ "label": "Sender address added", "value": "identity_created" }{ "label": "Sender address deleted", "value": "identity_destroyed" }{ "label": "Sender address updated", "value": "identity_updated" }{ "label": "Category activated", "value": "ledger_account_activated" }{ "label": "Transaction booked on category", "value": "ledger_account_booking_created" }{ "label": "Link between transaction and category deleted", "value": "ledger_account_booking_destroyed" }{ "label": "Category added", "value": "ledger_account_created" }{ "label": "Category deactivated", "value": "ledger_account_deactivated" }{ "label": "Category deleted", "value": "ledger_account_destroyed" }{ "label": "Category updated", "value": "ledger_account_updated" }{ "label": "Link with Mollie created", "value": "mollie_credential_created" }{ "label": "Link with Mollie removed", "value": "mollie_credential_destroyed" }{ "label": "Note created", "value": "note_created" }{ "label": "Note deleted", "value": "note_destroyed" }{ "label": "Order placed", "value": "order_created" }{ "label": "Payment deleted", "value": "payment_destroyed" }{ "label": "Transaction linked to a financial mutation", "value": "payment_linked_to_financial_mutation" }{ "label": "Payment registered for invoice", "value": "payment_registered" }{ "label": "Thank You email was sent for payment", "value": "payment_send_email" }{ "label": "Payment method updated", "value": "payment_method_edited" }{ "label": "Direct debit transaction approved by bank", "value": "payment_transaction_authorized" }{ "label": "Direct debit transaction waiting for approval by bank", "value": "payment_transaction_awaiting_authorization" }{ "label": "Payment batch cancelled", "value": "payment_transaction_batch_cancelled" }{ "label": "Payment batch created", "value": "payment_transaction_batch_created" }{ "label": "Direct debit transaction being executing", "value": "payment_transaction_executing" }{ "label": "Direct debit transaction accepted", "value": "payment_transaction_paid" }{ "label": "Direct debit transaction pending", "value": "payment_transaction_pending" }{ "label": "Direct debit transaction rejected", "value": "payment_transaction_rejected" }{ "label": "Direct debit payment is technically approved by the bank", "value": "payment_transaction_technically_validated" }{ "label": "Ponto is connected", "value": "ponto_connected" }{ "label": "Ponto connection deleted", "value": "ponto_disconnected" }{ "label": "Ponto bank link activated", "value": "ponto_direct_bank_link_activated" }{ "label": "Ponto bank link expired", "value": "ponto_direct_bank_link_expired" }{ "label": "Product activated", "value": "product_activated" }{ "label": "Product created", "value": "product_created" }{ "label": "Product deactivated", "value": "product_deactivated" }{ "label": "Product deleted", "value": "product_destroyed" }{ "label": "Product updated", "value": "product_updated" }{ "label": "Project activated", "value": "project_activated" }{ "label": "Project added", "value": "project_created" }{ "label": "Project deactivated", "value": "project_archived" }{ "label": "Project deleted", "value": "project_destroyed" }{ "label": "Project updated", "value": "project_updated" }{ "label": "Transaction added to credit transfer batch", "value": "purchase_transaction_added_to_batch" }{ "label": "Payment authorized at bank", "value": "purchase_transaction_authorized" }{ "label": "Payment awaiting authorization at bank", "value": "purchase_transaction_awaiting_authorization" }{ "label": "Credit transfer batch cancelled", "value": "purchase_transaction_batch_cancelled" }{ "label": "Purchase transaction batch created", "value": "purchase_transaction_batch_created" }{ "label": "Transaction created", "value": "purchase_transaction_created" }{ "label": "Transaction deleted", "value": "purchase_transaction_deleted" }{ "label": "Payment in execution", "value": "purchase_transaction_executing" }{ "label": "Payment succeeded", "value": "purchase_transaction_paid" }{ "label": "Payment pending", "value": "purchase_transaction_pending" }{ "label": "Payment rejected", "value": "purchase_transaction_rejected" }{ "label": "Payment technically approved by the bank", "value": "purchase_transaction_technically_validated" }{ "label": "The invoice could not be sent automatically, sending automatically is disabled", "value": "recurring_sales_invoice_auto_send_forcefully_disabled" }{ "label": "Recurring invoice created", "value": "recurring_sales_invoice_created" }{ "label": "Recurring sales invoice created based on original invoice", "value": "recurring_sales_invoice_created_from_original" }{ "label": "Recurring invoices created based on the original recurring invoice", "value": "recurring_sales_invoice_created_from_original_recurring" }{ "label": "You have reached the maximum amount of invoices for this month. The recurring invoice is not created.", "value": "recurring_sales_invoice_creating_skipped_due_to_limits" }{ "label": "Recurring invoice deactivated", "value": "recurring_sales_invoice_deactivated" }{ "label": "Recurring invoice deleted", "value": "recurring_sales_invoice_destroyed" }{ "label": "Sales invoice created", "value": "recurring_sales_invoice_invoice_created" }{ "label": "Sending automatically enabled", "value": "recurring_sales_invoice_started_auto_send" }{ "label": "Sending automatically disabled", "value": "recurring_sales_invoice_stopped_auto_send" }{ "label": "Recurring invoice updated", "value": "recurring_sales_invoice_updated" }{ "label": "Invoice created", "value": "sales_invoice_created" }{ "label": "Invoice created based on quote", "value": "sales_invoice_created_based_on_estimate" }{ "label": "Invoice created based on recurring invoice", "value": "sales_invoice_created_based_on_recurring" }{ "label": "Invoice created based on subscription", "value": "sales_invoice_created_based_on_subscription" }{ "label": "Sales invoice created through checkout", "value": "sales_invoice_created_from_checkout_order" }{ "label": "Invoice created based on original invoice", "value": "sales_invoice_created_from_original" }{ "label": "Invoice deleted", "value": "sales_invoice_destroyed" }{ "label": "Invoice marked as dubious", "value": "sales_invoice_marked_as_dubious" }{ "label": "Invoice was marked as irrecoverable", "value": "sales_invoice_marked_as_uncollectible" }{ "label": "Invoice has been merged with another invoice before sending", "value": "sales_invoice_merged" }{ "label": "Invoice has been merged with other recurring invoices before sending", "value": "sales_invoice_merged_with_recurring_sales_invoice" }{ "label": "Processing of invoice has been paused", "value": "sales_invoice_paused" }{ "label": "Revert marking as dubious", "value": "sales_invoice_revert_dubious" }{ "label": "Invoice marked as uncollectible", "value": "sales_invoice_revert_uncollectible" }{ "label": "Invoice sent by email", "value": "sales_invoice_send_email" }{ "label": "Invoice manually marked as sent", "value": "sales_invoice_send_manually" }{ "label": "Invoice sent by mail", "value": "sales_invoice_send_post" }{ "label": "Invoice sent via mail by Moneybird", "value": "sales_invoice_send_post_confirmation" }{ "label": "Sending by mail cancelled", "value": "sales_invoice_send_post_cancelled" }{ "label": "Reminder for this sales invoice sent by email", "value": "sales_invoice_send_reminder_email" }{ "label": "Reminder sent manually", "value": "sales_invoice_send_reminder_manually" }{ "label": "Reminder sent by mail", "value": "sales_invoice_send_reminder_post" }{ "label": "Invoice reminder sent by mail by Moneybird", "value": "sales_invoice_send_reminder_post_confirmation" }{ "label": "Invoice sent via Peppol", "value": "sales_invoice_send_si" }{ "label": "Received Peppol delivery notification", "value": "sales_invoice_send_si_delivered" }{ "label": "An error occurred while sending via Peppol", "value": "sales_invoice_send_si_error" }{ "label": "Invoice forwarded to Online incasso", "value": "sales_invoice_send_to_payt" }{ "label": "Invoice state changed to draft", "value": "sales_invoice_state_changed_to_draft" }{ "label": "Invoice has expired", "value": "sales_invoice_state_changed_to_late" }{ "label": "State of invoice changed to open", "value": "sales_invoice_state_changed_to_open" }{ "label": "Invoice has been paid", "value": "sales_invoice_state_changed_to_paid" }{ "label": "Invoice is pending payment", "value": "sales_invoice_state_changed_to_pending_payment" }{ "label": "Invoice state changed to reminded", "value": "sales_invoice_state_changed_to_reminded" }{ "label": "Invoice state changed to scheduled", "value": "sales_invoice_state_changed_to_scheduled" }{ "label": "Invoice state changed to uncollectible", "value": "sales_invoice_state_changed_to_uncollectible" }{ "label": "Processing of invoice has been resumed", "value": "sales_invoice_unpaused" }{ "label": "Invoice updated", "value": "sales_invoice_updated" }{ "label": "Payment notification email sent", "value": "send_payment_email" }{ "label": "Email after a failed payment sent", "value": "send_payment_unsuccessful_email" }{ "label": "Step assigned", "value": "subgoal_assigned" }{ "label": "Step completed", "value": "subgoal_completed" }{ "label": "Step not completed", "value": "subgoal_uncompleted" }{ "label": "Subscription cancelled", "value": "subscription_cancelled" }{ "label": "Subscription created", "value": "subscription_created" }{ "label": "Subscription deleted", "value": "subscription_destroyed" }{ "label": "Plan changed", "value": "subscription_edited" }{ "label": "Subscription updated", "value": "subscription_updated" }{ "label": "Activate VAT rate", "value": "tax_rate_activated" }{ "label": "VAT rate added", "value": "tax_rate_created" }{ "label": "VAT rate deactivated", "value": "tax_rate_deactivated" }{ "label": "VAT rate deleted", "value": "tax_rate_destroyed" }{ "label": "VAT rate updated", "value": "tax_rate_updated" }{ "label": "Time entry created", "value": "time_entry_created" }{ "label": "Time entry destroyed", "value": "time_entry_destroyed" }{ "label": "Time entry invoiced", "value": "time_entry_sales_invoice_created" }{ "label": "Time entry updated", "value": "time_entry_updated" }{ "label": "To-do completed", "value": "todo_completed" }{ "label": "To-do added", "value": "todo_created" }{ "label": "To-do deleted", "value": "todo_destroyed" }{ "label": "To-do viewed", "value": "todo_opened" }{ "label": "Ultimate beneficial owner created", "value": "ultimate_benificial_owner_created" }{ "label": "Ultimate beneficial owner updated", "value": "ultimate_benificial_owner_updated" }{ "label": "User invited", "value": "user_invited" }{ "label": "User invited for a call", "value": "user_invited_for_call" }{ "label": "User deleted", "value": "user_removed" }{ "label": "VAT-return filed", "value": "vat_return_created" }{ "label": "VAT-return is received by the tax authorities", "value": "vat_return_received" }{ "label": "VAT-return paid", "value": "vat_return_paid" }{ "label": "Digital VAT suppletion submitted", "value": "vat_suppletion_created" }{ "label": "Electronic vat-suppletion is received by the tax authority", "value": "vat_suppletion_received" }{ "label": "Workflow added", "value": "workflow_created" }{ "label": "Workflow deactivated", "value": "workflow_deactivated" }{ "label": "Workflow deleted", "value": "workflow_destroyed" }{ "label": "Workflow updated", "value": "workflow_updated" }

Trigger Authentication

Moneybird uses OAuth authentication. When you connect your Moneybird account, Pipedream will open a popup window where you can sign into Moneybird and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Moneybird API.

Pipedream requests the following authorization scopes when you connect your account:

sales_invoicesdocumentsestimatesbanksettingstime_entries

About Moneybird

Accounting software

Action

Description:Create a new branch in a Github repo. [See docs here](https://docs.github.com/en/rest/git/refs?apiVersion=2022-11-28#create-a-reference)
Version:0.0.9
Key:github-create-branch

GitHub Overview

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Action Code

import { ConfigurationError } from "@pipedream/platform";
import github from "../../github.app.mjs";

export default {
  key: "github-create-branch",
  name: "Create Branch",
  description: "Create a new branch in a Github repo. [See docs here](https://docs.github.com/en/rest/git/refs?apiVersion=2022-11-28#create-a-reference)",
  version: "0.0.9",
  type: "action",
  props: {
    github,
    repoFullname: {
      propDefinition: [
        github,
        "repoFullname",
      ],
    },
    branchName: {
      label: "Branch Name",
      description: "The name of the new branch that will be crated",
      type: "string",
    },
    branchSha: {
      label: "Source Branch",
      description: "The source branch that will be used to create the new branch",
      propDefinition: [
        github,
        "branch",
        (c) => ({
          repoFullname: c.repoFullname,
        }),
      ],
      optional: true,
    },
  },
  async run({ $ }) {
    if (this.branchSha) {
      this.branchSha = this.branchSha.split("/")[0];
    } else {
      const branches = await this.github.getBranches({
        repoFullname: this.repoFullname,
      });

      const masterBranch = branches.filter((branch) => branch.name === "master" || branch.name === "main");

      if (masterBranch.length) this.branchSha = masterBranch[0].commit.sha;
    }

    if (!this.branchSha) {
      throw new ConfigurationError("Is required to select one source branch");
    }

    const response = await this.github.createBranch({
      repoFullname: this.repoFullname,
      data: {
        ref: `refs/heads/${this.branchName}`,
        sha: this.branchSha,
      },
    });

    $.export("$summary", `Successfully created branch with ID ${response.object.sha}.`);

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
GitHubgithubappThis component uses the GitHub app.
RepositoryrepoFullnamestringSelect a value from the drop down menu.
Branch NamebranchNamestring

The name of the new branch that will be crated

Source BranchbranchShastringSelect a value from the drop down menu.

Action Authentication

GitHub uses OAuth authentication. When you connect your GitHub account, Pipedream will open a popup window where you can sign into GitHub and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any GitHub API.

Pipedream requests the following authorization scopes when you connect your account:

repoadmin:orgadmin:public_keyadmin:org_hookgistprojectnotificationsuserwrite:discussionwrite:packagesread:packagesadmin:repo_hook

About 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.

More Ways to Connect GitHub + Moneybird

Create Contact with Moneybird API on New Gist from GitHub API
GitHub + Moneybird
 
Try it
Create Contact with Moneybird API on New Mention from GitHub API
GitHub + Moneybird
 
Try it
Create Contact with Moneybird API on New Notification from GitHub API
GitHub + Moneybird
 
Try it
Create Contact with Moneybird API on New Organization from GitHub API
GitHub + Moneybird
 
Try it
Create Contact with Moneybird API on New Repository from GitHub API
GitHub + Moneybird
 
Try it
New Webhook event from the Moneybird API

Emit new event on each webhook event. See docs here

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
Create Contact with the Moneybird API

Create a new contact. See docs here

 
Try it
Create Quote with the Moneybird API

Create a new quote. See docs here

 
Try it
Create Sale Invoice with the Moneybird API

Create a sale invoice. See docs here

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it

Explore Other Apps

1
-
24
of
2,000+
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.
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.
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 models like ChatGPT, DALL-E, and Whisper.
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Snowflake
Snowflake
A data warehouse built for the cloud
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
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.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.