← HTTP / Webhook + awork integrations

Create Project with awork API on New Requests (Payload Only) from HTTP / Webhook API

Pipedream makes it easy to connect APIs for awork, HTTP / Webhook and 1000+ other apps remarkably fast.

Trigger workflow on
New Requests (Payload Only) from the HTTP / Webhook API
Next, do this
Create Project with the awork 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

This integration creates a workflow with a HTTP / Webhook trigger and awork 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 Requests (Payload Only) trigger
    1. Connect your HTTP / Webhook account
  3. Configure the Create Project action
    1. Connect your awork account
    2. Configure Name
    3. Optional- Configure Start Date
    4. Optional- Configure Due Date
    5. Optional- Configure Description
    6. Optional- Configure Time Budget
    7. Optional- Configure Is Private
    8. Optional- Configure Is Billable By Default
  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:Get a URL and emit the HTTP body as an event on every request
Version:0.1.1
Key:http-new-requests-payload-only

Trigger Code

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

// Core HTTP component
// Returns a 200 OK response, emits the HTTP payload as an event
export default {
  key: "http-new-requests-payload-only",
  name: "New Requests (Payload Only)",
  // eslint-disable-next-line
  description: "Get a URL and emit the HTTP body as an event on every request",
  version: "0.1.1",
  type: "source",
  props: {
    // eslint-disable-next-line
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    http,
  },
  async run(event) {
    const { body } = event;
    this.httpInterface.respond({
      status: 200,
      body,
    });
    // Emit the HTTP payload
    this.$emit({
      body,
    });
  },
};

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
N/AhttpInterface$.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.
HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Action

Description:Creates a project. [See docs here](https://openapi.awork.io/#/Projects/post_projects)
Version:0.0.1
Key:awork-create-project

awork Overview

The awork API allows developers to access awork.io content and build
applications on top of the awork platform. With the awork API, you can:

  • Access awork.io content, including articles, photos, and videos
  • Build applications on top of the awork platform
  • Integrate awork.io content into your own website or application

Action Code

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

export default {
  name: "Create Project",
  version: "0.0.1",
  key: "awork-create-project",
  description: "Creates a project. [See docs here](https://openapi.awork.io/#/Projects/post_projects)",
  type: "action",
  props: {
    awork,
    name: {
      label: "Name",
      description: "The name of the project",
      type: "string",
    },
    startDate: {
      label: "Start Date",
      description: "The start date of the project. E.g. `2022-03-01T00:00:00Z`",
      type: "string",
      optional: true,
    },
    dueDate: {
      label: "Due Date",
      description: "The due date of the project. E.g. `2022-05-01T00:00:00Z`",
      type: "string",
      optional: true,
    },
    description: {
      label: "Description",
      description: "The description of the project",
      type: "string",
      optional: true,
    },
    timeBudget: {
      label: "Time Budget",
      description: "The time budget in seconds of the project. E.g. `576000`",
      type: "string",
      optional: true,
    },
    isPrivate: {
      label: "Is Private",
      description: "The project will be private",
      type: "boolean",
      optional: true,
    },
    isBillableByDefault: {
      label: "Is Billable By Default",
      description: "The project will be billable by default",
      type: "boolean",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.awork.createProject({
      $,
      data: {
        name: this.name,
        description: this.description,
        startDate: this.startDate,
        dueDate: this.dueDate,
        timeBudget: this.timeBudget,
        isPrivate: this.isPrivate,
        isBillableByDefault: this.isBillableByDefault,
      },
    });

    if (response) {
      $.export("$summary", `Successfully created project 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
aworkaworkappThis component uses the awork app.
Namenamestring

The name of the project

Start DatestartDatestring

The start date of the project. E.g. 2022-03-01T00:00:00Z

Due DatedueDatestring

The due date of the project. E.g. 2022-05-01T00:00:00Z

Descriptiondescriptionstring

The description of the project

Time BudgettimeBudgetstring

The time budget in seconds of the project. E.g. 576000

Is PrivateisPrivateboolean

The project will be private

Is Billable By DefaultisBillableByDefaultboolean

The project will be billable by default

Action Authentication

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

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

offline_access

About awork

Your smart digital assistant

More Ways to Connect awork + HTTP / Webhook

Create Client with awork API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + awork
 
Try it
Create Client with awork API on New Requests from HTTP / Webhook API
HTTP / Webhook + awork
 
Try it
Create Project with awork API on New Requests from HTTP / Webhook API
HTTP / Webhook + awork
 
Try it
Find Users By Email with awork API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + awork
 
Try it
Find Users By Email with awork API on New Requests from HTTP / Webhook API
HTTP / Webhook + awork
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
New Task (Instant) from the awork API

Emit new event on each created task.

 
Try it
New Time Entry (Instant) from the awork API

Emit new event on each created time entry.

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP Source that uses Return a custom response from your workflow as its HTTP Response

 
Try it