← Codat + Originality.ai integrations

Detect AI From URL with Originality.ai API on New Webhook Message (Instant) from Codat API

Pipedream makes it easy to connect APIs for Originality.ai, Codat and 2,800+ other apps remarkably fast.

Trigger workflow on
New Webhook Message (Instant) from the Codat API
Next, do this
Detect AI From URL with the Originality.ai 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 Codat trigger and Originality.ai 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 Message (Instant) trigger
    1. Connect your Codat account
    2. Select one or more Event Type
    3. Select a Company ID
  3. Configure the Detect AI From URL action
    1. Connect your Originality.ai account
    2. Configure URL
  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 specified event type is produced by Codat. [See the documentation](https://docs.codat.io/platform-api#/operations/create-webhook-consumer)
Version:0.0.1
Key:codat-new-webhook-message-instant

Codat Overview

The Codat API provides a way to seamlessly integrate and automate financial data processes for businesses. With Codat, you can connect to accounting software, extract company financials, and reconcile transactions in real-time. Whether it's for pulling recent invoices, syncing payment information, or consolidating financial reports, Codat's API acts as a bridge between various accounting platforms and your applications, enabling more efficient financial operations and decision-making.

Trigger Code

import codat from "../../codat.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "codat-new-webhook-message-instant",
  name: "New Webhook Message (Instant)",
  description: "Emit new event when a specified event type is produced by Codat. [See the documentation](https://docs.codat.io/platform-api#/operations/create-webhook-consumer)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    codat,
    db: "$.service.db",
    http: {
      type: "$.interface.http",
      customResponse: true,
    },
    eventTypes: {
      propDefinition: [
        codat,
        "eventTypes",
      ],
    },
    companyId: {
      propDefinition: [
        codat,
        "companyId",
      ],
    },
  },
  hooks: {
    async activate() {
      const data = {
        url: this.http.endpoint,
        eventTypes: this.eventTypes,
      };
      if (this.companyId) {
        data.companyId = this.companyId;
      }
      const { id } = await this.codat.createWebhook({
        data,
      });
      this._setHookId(id);
    },
    async deactivate() {
      const hookId = this._getHookId();
      if (hookId) {
        await this.codat.deleteWebhook({
          hookId,
        });
      }
    },
  },
  methods: {
    _getHookId() {
      return this.db.get("hookId");
    },
    _setHookId(hookId) {
      this.db.set("hookId", hookId);
    },
    generateMeta(body) {
      return {
        id: body.AlertId,
        summary: body.Message,
        ts: Date.now(),
      };
    },
  },
  async run({ body }) {
    this.http.respond({
      status: 200,
    });
    const meta = this.generateMeta(body);
    this.$emit(body, meta);
  },
  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
CodatcodatappThis component uses the Codat 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.
Event TypeeventTypesstring[]Select a value from the drop down menu:{ "value": "AccountCategoriesUpdated", "label": "Triggered anytime a company's accounts are categorized. This can be when Codat updates the suggested category fields or a user updates the confirmed category fields." }{ "value": "bankFeeds.sourceAccount.connected", "label": "Indicates a bank feed source account has changed to a status of connected." }{ "value": "bankFeeds.sourceAccount.disconnected", "label": "Indicates a bank feed source account has changed to a status of disconnected." }{ "value": "ClientRateLimitReached", "label": "Triggered when the number of requests to Codat's API from the client exceeds the current quota." }{ "value": "ClientRateLimitReset", "label": "Triggered when the rate limit quota has reset for the client, and more requests to the API are available." }{ "value": "DataConnectionStatusChanged", "label": "Triggered when a data connection status of a specific company changes." }{ "value": "DataSyncCompleted", "label": " Generated for each dataType to indicate that data synchronization is successfully completed for that specific data type." }{ "value": "DataSyncStatusChangedToError", "label": "Triggered when the synchronization of a dataset fails." }{ "value": "DatasetDataChanged", "label": " Generated for each dataType to indicate that dataset synchronization has completed and updated Codat's data cache through the creation of new records or a change to existing records." }{ "value": "NewCompanySynchronized", "label": "Triggered when initial syncs are complete for all data types queued for a newly connected company, and at least one of those syncs is successful." }{ "value": "PushOperationStatusChanged", "label": "Indicates that a create, update, or delete operation's status has changed. You can learn more about push operations at Codat." }{ "value": "PushOperationTimedOut", "label": "Indicates that a create, update, or delete operation has timed out. You can learn more about timeouts for push operations at Codat." }{ "value": "SyncCompleted", "label": "Triggered anytime an expense sync completes. Used for Sync for Expenses only." }{ "value": "SyncConnectionDeleted", "label": "Indicates a Sync for Commerce connection has been deleted. Used for Sync for Commerce only." }{ "value": "SyncFailed", "label": "Indicates a failure occurred during an expense sync. Used for Sync for Expenses only." }
Company IDcompanyIdstringSelect a value from the drop down menu.

Trigger Authentication

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

To retrieve your API keys and Authorization Header,

  • Navigate to your Codat account and sign in
  • Go to “Developers" > "API Keys"

About Codat

Codat's business data APIs connect banks and fintechs to all of the financial systems their customers use.

Action

Description:Scans a webpage for AI generated content. [See the documentation](https://docs.originality.ai/api-v1-0-reference/scan/ai-url-scan)
Version:0.0.1
Key:originality_ai-detect-ai-from-url

Originality.ai Overview

The Originality.ai API provides functionality to check content for potential plagiarism and AI-generated text. Within Pipedream's serverless environment, you can construct workflows that automate the process of evaluating originality in large volumes of text, integrate plagiarism checks into content pipelines, and flag content for further review. By leveraging this API in Pipedream, you can harness event-driven, scalable workflows to ensure content integrity across various platforms.

Action Code

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

export default {
  key: "originality_ai-detect-ai-from-url",
  name: "Detect AI From URL",
  description: "Scans a webpage for AI generated content. [See the documentation](https://docs.originality.ai/api-v1-0-reference/scan/ai-url-scan)",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    url: {
      propDefinition: [
        app,
        "url",
      ],
    },
  },
  async run({ $ }) {
    const response = await this.app.scanWebpageForAI({
      $,
      data: {
        url: this.url,
      },
    });

    $.export("$summary", "Successfully scanned URL for AI");
    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
Originality.aiappappThis component uses the Originality.ai app.
URLurlstring

The URL of the webpage to be scanned

Action Authentication

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

About Originality.ai

AI & Plagiarism Detector for Serious Content Publishers.

More Ways to Connect Originality.ai + Codat

Detect AI Content with Originality.ai API on New Webhook Message (Instant) from Codat API
Codat + Originality.ai
 
Try it
Scan Content for Plagiarism and Readability with Originality.ai API on New Webhook Message (Instant) from Codat API
Codat + Originality.ai
 
Try it
New Webhook Message (Instant) from the Codat API

Emit new event when a specified event type is produced by Codat. See the documentation

 
Try it
Detect AI Content with the Originality.ai API

Scans a string for AI content. See the documentation

 
Try it
Detect AI From URL with the Originality.ai API

Scans a webpage for AI generated content. See the documentation

 
Try it
Scan Content for Plagiarism and Readability with the Originality.ai API

Scans a string for plagiarism as well as readability. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
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.
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.