← Bluesky + Nifty integrations

Assign Task to Team Member with Nifty API on New Timeline Posts from Bluesky API

Pipedream makes it easy to connect APIs for Nifty, Bluesky and 2,700+ other apps remarkably fast.

Trigger workflow on
New Timeline Posts from the Bluesky API
Next, do this
Assign Task to Team Member with the Nifty 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 Bluesky trigger and Nifty 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 Timeline Posts trigger
    1. Connect your Bluesky account
    2. Configure Polling Schedule
  3. Configure the Assign Task to Team Member action
    1. Connect your Nifty account
    2. Select a Task ID
    3. Select one or more Member ID
  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 posts appear in the `following` feed. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-timeline).
Version:0.0.1
Key:bluesky-new-timeline-posts

Trigger Code

import common from "../common/polling.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "bluesky-new-timeline-posts",
  name: "New Timeline Posts",
  description: "Emit new event when posts appear in the `following` feed. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-timeline).",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getDateField() {
      return "post.record.createdAt";
    },
    getResourceName() {
      return "feed";
    },
    getResourcesFn() {
      return this.app.getTimeline;
    },
    getResourcesFnArgs() {
      return {
        debug: true,
      };
    },
    generateMeta(resource) {
      const { post } = resource;
      return {
        id: post.cid,
        summary: `New Post at ${post.record.createdAt}`,
        ts: Date.parse(post.record.createdAt),
      };
    },
  },
  sampleEmit,
};

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
BlueskyappappThis component uses the Bluesky app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling Scheduletimer$.interface.timer

How often to poll the API

Trigger Authentication

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

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

About Bluesky

Bluesky is an open network. With one account, you can access both an easy-to-use social network and a shared identity across the entire social internet.

Action

Description:Assigns a specific task to a team member in Nifty. [See the documentation](https://openapi.niftypm.com/api#put-api-v1-0-tasks-task_id-assignees)
Version:0.0.2
Key:nifty-assign-task

Nifty Overview

The Nifty API allows for streamlined project management, facilitating task automation and data synchronization within Pipedream. By integrating with the Nifty API, you can automate workflows involving project tracking, task assignments, and progress monitoring, effectively reducing manual overhead. On Pipedream, the API's endpoints can trigger actions, respond to changes, and update records across different services, bringing cohesion to your project management ecosystem.

Action Code

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

export default {
  key: "nifty-assign-task",
  name: "Assign Task to Team Member",
  description: "Assigns a specific task to a team member in Nifty. [See the documentation](https://openapi.niftypm.com/api#put-api-v1-0-tasks-task_id-assignees)",
  version: "0.0.2",
  type: "action",
  props: {
    nifty,
    taskId: {
      propDefinition: [
        nifty,
        "taskId",
      ],
    },
    assignees: {
      propDefinition: [
        nifty,
        "memberId",
      ],
      type: "string[]",
    },
  },
  async run({ $ }) {
    const response = await this.nifty.assignTask({
      $,
      taskId: this.taskId,
      data: {
        assignees: this.assignees,
      },
    });

    $.export("$summary", `Successfully assigned task ${this.taskId} to team member(s) with Id(s): ${this.assignees.toString()}`);
    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
NiftyniftyappThis component uses the Nifty app.
Task IDtaskIdstringSelect a value from the drop down menu.
Member IDassigneesstring[]Select a value from the drop down menu.

Action Authentication

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

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

filedocmessageprojecttaskmemberlabelmilestonesubtasktask_groupsubteam

About Nifty

Delivering the future of remote collaboration. Manage projects, not tools.

More Ways to Connect Nifty + Bluesky

Like Post with Bluesky API on New Message Posted from Nifty API
Nifty + Bluesky
 
Try it
Like Post with Bluesky API on New Task Created from Nifty API
Nifty + Bluesky
 
Try it
Create Post with Bluesky API on New Message Posted from Nifty API
Nifty + Bluesky
 
Try it
Create Post with Bluesky API on New Task Created from Nifty API
Nifty + Bluesky
 
Try it
Retrieve Thread with Bluesky API on New Message Posted from Nifty API
Nifty + Bluesky
 
Try it
New Follower On Account from the Bluesky API

Emit new event when someone follows the specified account. Requires the account ID as a prop to monitor followers for that account. See the documentation

 
Try it
New Posts By Author from the Bluesky API

Emit new event when an author creates a post. Requires the author id as a prop to track posts from a specific author. See the documentation

 
Try it
New Timeline Posts from the Bluesky API

Emit new event when posts appear in the following feed. See the documentation

 
Try it
New Message Posted from the Nifty API

Emit new event when a new message is posted in a team's discussion.

 
Try it
New Task Created from the Nifty API

Emit new event when a task is created in a project.

 
Try it
Create Post with the Bluesky API

Creates a new post on Bluesky. See the documentation

 
Try it
Like Post with the Bluesky API

Like a specific post on Bluesky. See the documentation

 
Try it
Retrieve Thread with the Bluesky API

Retrieve a full thread of posts. See the documentation

 
Try it
Assign Task to Team Member with the Nifty API

Assigns a specific task to a team member in Nifty. See the documentation

 
Try it
Create Message with the Nifty API

Sends a new message in a team's discussion. See the documentation

 
Try it

Explore Other Apps

1
-
0
of
2,700+
apps by most popular