← AltTextify + ProWorkflow integrations

Add Project Task with ProWorkflow API on New Alt Text Generated from AltTextify API

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

Trigger workflow on
New Alt Text Generated from the AltTextify API
Next, do this
Add Project Task with the ProWorkflow 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 AltTextify trigger and ProWorkflow 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 Alt Text Generated trigger
    1. Connect your AltTextify account
    2. Configure timer
  3. Configure the Add Project Task action
    1. Connect your ProWorkflow account
    2. Select a Project ID
    3. Configure Name
  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 new alt text is generated for an image. [See the documentation](https://apidoc.alttextify.net/#api-Image-GetImages)
Version:0.0.1
Key:alttextify-new-alttext-generated

Trigger Code

import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import alttextify from "../../alttextify.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "alttextify-new-alttext-generated",
  name: "New Alt Text Generated",
  description: "Emit new event when new alt text is generated for an image. [See the documentation](https://apidoc.alttextify.net/#api-Image-GetImages)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    alttextify,
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  methods: {
    _getLastDate() {
      return this.db.get("lastDate") || 0;
    },
    _setLastDate(lastDate) {
      this.db.set("lastDate", lastDate);
    },
    async emitEvent(maxResults = false) {
      const lastDate = this._getLastDate();

      const response = this.alttextify.paginate({
        fn: this.alttextify.listAltTexts,
      });

      let responseArray = [];
      for await (const item of response) {
        if (Date.parse(item.created_at) <= lastDate) break;
        responseArray.push(item);
      }

      if (responseArray.length) {
        if (maxResults && (responseArray.length > maxResults)) {
          responseArray.length = maxResults;
        }
        this._setLastDate(Date.parse(responseArray[0].created_at));
      }

      for (const item of responseArray.reverse()) {
        this.$emit(item, {
          id: item.asset_id,
          summary: `New alt text generated for asset ${item.asset_id}`,
          ts: Date.parse(item.created_at),
        });
      }
    },
  },
  hooks: {
    async deploy() {
      await this.emitEvent(25);
    },
  },
  async run() {
    await this.emitEvent();
  },
  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
AltTextifyalttextifyappThis component uses the AltTextify app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

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

About AltTextify

AI Driven Alt Text Generation for Your Images

Action

Description:Adds a project task. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).
Version:0.0.1
Key:proworkflow-add-project-task

ProWorkflow Overview

The ProWorkflow API offers a powerhouse of project management and workflow automation capabilities. With Pipedream, you can leverage these abilities to create custom integrations that boost productivity and streamline operations. By tapping into ProWorkflow's endpoints, you can automate project creation, task assignments, time tracking, and report generation. This API dovetails neatly with other apps on Pipedream, allowing you to create multifaceted workflows that respond in real-time to external triggers, such as emails, form submissions, and calendar events.

Action Code

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

export default {
  key: "proworkflow-add-project-task",
  name: "Add Project Task",
  description: "Adds a project task. [See the docs](https://api.proworkflow.net/?documentation#gettingstartedpostsingle).",
  type: "action",
  version: "0.0.1",
  props: {
    app,
    projectId: {
      propDefinition: [
        app,
        "projectId",
      ],
    },
    name: {
      propDefinition: [
        app,
        "taskName",
      ],
    },
  },
  methods: {
    createProjectTask({
      projectId, ...args
    } = {}) {
      return this.app.create({
        path: `/projects/${projectId}/tasks`,
        ...args,
      });
    },
  },
  async run({ $: step }) {
    const {
      projectId,
      name,
    } = this;

    const response = await this.createProjectTask({
      step,
      projectId,
      data: {
        name,
      },
    });

    step.export("$summary", `${response.message} with ${response.status}.`);

    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
ProWorkflowappappThis component uses the ProWorkflow app.
Project IDprojectIdstringSelect a value from the drop down menu.
Namenamestring

The name of the project task.

Action Authentication

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

ProWorkflow requires their users enter their account API key as well as username (or email) and password in order to connect to their API. For more info, refer to ProWorkflow's documentation

  • Get your API key in the main ProWorkflow application
  • Pipedream recommends using a strong and unique password for your ProWorkflow account

About ProWorkflow

Leading project, task and time management software! ProWorkflow is an online project management software that enables you to keep accurate time-keeping records, organize, plan, and delegate jobs and tasks whilst using the timeline to have an overview of company activity.

More Ways to Connect ProWorkflow + AltTextify

Delete Image Alt Text with AltTextify API on Contact Updated from ProWorkflow API
ProWorkflow + AltTextify
 
Try it
Delete Image Alt Text with AltTextify API on New Contact Created from ProWorkflow API
ProWorkflow + AltTextify
 
Try it
Delete Image Alt Text with AltTextify API on New Project Created from ProWorkflow API
ProWorkflow + AltTextify
 
Try it
Delete Image Alt Text with AltTextify API on Project Updated from ProWorkflow API
ProWorkflow + AltTextify
 
Try it
Retrieve Alt Text by Asset ID with AltTextify API on Contact Updated from ProWorkflow API
ProWorkflow + AltTextify
 
Try it
New Alt Text Generated from the AltTextify API

Emit new event when new alt text is generated for an image. See the documentation

 
Try it
Contact Updated from the ProWorkflow API

Emit new event when a contact is updated. See the docs

 
Try it
New Company Created from the ProWorkflow API

Emit new event when a new comapny is created. See the docs

 
Try it
New Contact Created from the ProWorkflow API

Emit new event when a new contact is created. See the docs

 
Try it
New Project Created from the ProWorkflow API

Emit new event when a new project is created. See the docs

 
Try it
Delete Image Alt Text with the AltTextify API

Delete the generated alt text for a specific image using the asset ID. See the documentation

 
Try it
Retrieve Alt Text by Asset ID with the AltTextify API

Retrieve alt text for a previously submitted image using the asset ID. See the documentation

 
Try it
Submit Image to Alttextify with the AltTextify API

Upload or submit an image to Alttextify for alt text generation. See the documentation

 
Try it
Add Client to Project with the ProWorkflow API

Adds a client to a project. See the docs

 
Try it
Add Contact with the ProWorkflow API

Adds a contact. See the docs

 
Try it

Explore Other Apps

1
-
24
of
2,700+
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.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream 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.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
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.
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.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
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
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
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.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
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.