← Teamwork Desk + Confluence integrations

Create Page with Confluence API on New Customer Created from Teamwork Desk API

Pipedream makes it easy to connect APIs for Confluence, Teamwork Desk and 3,000+ other apps remarkably fast.

Trigger workflow on
New Customer Created from the Teamwork Desk API
Next, do this
Create Page with the Confluence API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,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 Teamwork Desk trigger and Confluence 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 Customer Created trigger
    1. Connect your Teamwork Desk account
    2. Select one or more Inboxes
  3. Configure the Create Page action
    1. Connect your Confluence account
    2. Configure draftInfo
    3. Select a Space ID
    4. Configure Title
    5. Configure Body
    6. Optional- Select a Status
    7. Optional- Select a Parent Page ID
    8. Optional- Select a Subtype
    9. Optional- Configure Embedded
    10. Optional- Configure Private
    11. Optional- Configure Root Level
  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 when a new customer is created.
Version:0.0.1
Key:teamwork_desk-customer-created

Teamwork Desk Overview

The Teamwork Desk API provides the means to programmatically access and manipulate customer support ticket data. By integrating it with Pipedream, you can automate ticketing workflows, streamline customer interactions, and connect support data with other business tools. Whether syncing tickets to a CRM, setting up custom alerts, or generating reports, the API's capabilities allow for a variety of automations to enhance support operations.

Trigger Code

import common from "../common/base.mjs";

export default {
  ...common,
  name: "New Customer Created",
  key: "teamwork_desk-customer-created",
  type: "source",
  description: "Emit new event when a new customer is created.",
  version: "0.0.1",
  methods: {
    ...common.methods,
    getWebhookEvents() {
      return [
        "customer.created",
      ];
    },
    getMetadata({
      customer: {
        id, createdAt,
      },
    }) {
      return {
        id: id,
        summary: `A new customer with id ${id} was successfully created!`,
        ts: createdAt,
      };
    },
  },
};

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
Teamwork DeskteamworkDeskappThis component uses the Teamwork Desk 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.
Inboxesinboxesstring[]Select a value from the drop down menu.

Trigger Authentication

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

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

About Teamwork Desk

Ticketing system designed to easily manage customer queries, saving you time and money.

Action

Description:Creates a new page in the space. [See the documentation](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-post)
Version:0.0.5
Key:confluence-create-page

Confluence Overview

The Confluence API allows you to harness the collaborative power of Confluence programmatically. With it, you can automate content creation, update pages, manage spaces, and extract data for reporting or integration with other tools. Leveraging this API within Pipedream enables streamlined workflows that can react to events or schedule tasks, interacting with Confluence data and connecting to an array of other apps and services.

Action Code

import confluence from "../../confluence.app.mjs";

export default {
  key: "confluence-create-page",
  name: "Create Page",
  description: "Creates a new page in the space. [See the documentation](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-post)",
  version: "0.0.5",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    confluence,
    draftInfo: {
      type: "alert",
      alertType: "info",
      content: "Pages are created as published by default, unless specified as a draft in the `Status` prop.",
    },
    spaceId: {
      propDefinition: [
        confluence,
        "spaceId",
      ],
    },
    title: {
      propDefinition: [
        confluence,
        "title",
      ],
      description: "The title of the page",
    },
    body: {
      propDefinition: [
        confluence,
        "body",
      ],
      description: "The body of the page",
    },
    status: {
      propDefinition: [
        confluence,
        "status",
      ],
      description: "The status of the page, specifies if the page will be created as a new page or a draft.",
    },
    parentId: {
      propDefinition: [
        confluence,
        "parentId",
        ({ spaceId }) => ({
          spaceId,
        }),
      ],
      optional: true,
    },
    subtype: {
      type: "string",
      label: "Subtype",
      description: "The subtype of the page",
      optional: true,
      options: [
        "live",
      ],
    },
    embedded: {
      type: "boolean",
      label: "Embedded",
      description: "Whether the page should be embedded",
      optional: true,
    },
    private: {
      type: "boolean",
      label: "Private",
      description: "Whether the page should be private",
      optional: true,
    },
    rootLevel: {
      type: "boolean",
      label: "Root Level",
      description: "Whether the page should be created at the root level",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.confluence.createPage({
      $,
      cloudId: await this.confluence.getCloudId({
        $,
      }),
      data: {
        spaceId: this.spaceId,
        status: this.status,
        title: this.title,
        parentId: this.parentId,
        subtype: this.subtype,
        body: {
          representation: "storage",
          value: this.body,
        },
      },
      params: {
        "embedded": this.embedded,
        "private": this.private,
        "root-level": this.rootLevel,
      },
    });

    $.export("$summary", `Successfully created page with ID: ${response.id}`);
    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
ConfluenceconfluenceappThis component uses the Confluence app.
Space IDspaceIdstringSelect a value from the drop down menu.
Titletitlestring

The title of the page

Bodybodystring

The body of the page

StatusstatusstringSelect a value from the drop down menu:currentdraft
Parent Page IDparentIdstringSelect a value from the drop down menu.
SubtypesubtypestringSelect a value from the drop down menu:live
Embeddedembeddedboolean

Whether the page should be embedded

Privateprivateboolean

Whether the page should be private

Root LevelrootLevelboolean

Whether the page should be created at the root level

Action Authentication

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

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

write:confluence-contentread:confluence-space.summarywrite:confluence-spacewrite:confluence-fileread:confluence-propswrite:confluence-propsmanage:confluence-configurationread:confluence-content.allread:confluence-content.summarysearch:confluenceread:meoffline_accessread:space:confluenceread:blogpost:confluencewrite:blogpost:confluencedelete:blogpost:confluenceread:page:confluencewrite:page:confluencedelete:page:confluence

About Confluence

Get, create, update, and delete content, spaces, and more.

More Ways to Connect Confluence + Teamwork Desk

Create Customer with Teamwork Desk API on Watch Pages from Confluence API
Confluence + Teamwork Desk
 
Try it
Create Ticket with Teamwork Desk API on Watch Pages from Confluence API
Confluence + Teamwork Desk
 
Try it
Reply To Ticket with Teamwork Desk API on Watch Pages from Confluence API
Confluence + Teamwork Desk
 
Try it
Update Customer with Teamwork Desk API on Watch Pages from Confluence API
Confluence + Teamwork Desk
 
Try it
Update Ticket with Teamwork Desk API on Watch Pages from Confluence API
Confluence + Teamwork Desk
 
Try it
New Customer Created from the Teamwork Desk API

Emit new event when a new customer is created.

 
Try it
New Customer Reply from the Teamwork Desk API

Emit new event when a customer reply.

 
Try it
New Ticket Created from the Teamwork Desk API

Emit new event when a new ticket is created.

 
Try it
New Page or Blog Post from the Confluence API

Emit new event whenever a new page or blog post is created in a specified space

 
Try it
Watch Blog Posts from the Confluence API

Emit new event when a blog post is created or updated

 
Try it
Create Customer with the Teamwork Desk API

Create a new customer See the documentation

 
Try it
Create Ticket with the Teamwork Desk API

Create a new ticket See the documentation

 
Try it
Reply To Ticket with the Teamwork Desk API

Reply to a specific ticket See the documentation

 
Try it
Update Customer with the Teamwork Desk API

Update a specific customer See the documentation

 
Try it
Update Ticket with the Teamwork Desk API

Update a specific ticket See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

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.
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.
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.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
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
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
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
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
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
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.