← Microsoft SQL Server + YouTube Data integrations

Upload Channel Banner with YouTube Data API on New Or Updated Row from Microsoft SQL Server API

Pipedream makes it easy to connect APIs for YouTube Data, Microsoft SQL Server and 3,000+ other apps remarkably fast.

Trigger workflow on
New Or Updated Row from the Microsoft SQL Server API
Next, do this
Upload Channel Banner with the YouTube Data 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 Microsoft SQL Server trigger and YouTube Data 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 Or Updated Row trigger
    1. Connect your Microsoft SQL Server account
    2. Configure Polling schedule
    3. Select a Table
    4. Select a Column
    5. Select a Timestamp Column
  3. Configure the Upload Channel Banner action
    1. Connect your YouTube Data account
    2. Configure infoAlert
    3. Configure File Path or URL
    4. Optional- Configure On Behalf Of Content Owner
    5. Optional- Configure syncDir
  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:Triggers when a new row is added or an existing row is updated. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=sql-server-ver16)
Version:0.0.5
Key:microsoft_sql_server-new-or-updated-row

Microsoft SQL Server Overview

With the Microsoft SQL Server API on Pipedream, you can automate your database operations and create powerful integrations. This API allows you to execute queries, manage databases, and trigger actions based on data changes. Implementing workflows that react to database events, manipulate data, or synchronize SQL Server data with other services, becomes effortless with Pipedream's serverless platform.

Trigger Code

import { v4 as uuidv4 } from "uuid";
import common from "../common/polling.mjs";

export default {
  ...common,
  key: "microsoft_sql_server-new-or-updated-row",
  name: "New Or Updated Row",
  description: "Triggers when a new row is added or an existing row is updated. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=sql-server-ver16)",
  type: "source",
  version: "0.0.5",
  dedupe: "unique",
  props: {
    ...common.props,
    table: {
      propDefinition: [
        common.props.app,
        "table",
      ],
    },
    column: {
      description: "The column is used to create a raw number for pagination.",
      propDefinition: [
        common.props.app,
        "column",
        ({ table }) => ({
          table,
        }),
      ],
    },
    timestampColumn: {
      propDefinition: [
        common.props.app,
        "column",
        ({ table }) => ({
          table,
        }),
      ],
      label: "Timestamp Column",
      description: "A datetime column, such as 'date_updated' or 'last_modified' that is set to the current datetime when a row is updated.",
    },
  },
  methods: {
    ...common.methods,
    getResourceName() {
      return "recordset";
    },
    getResourceFn() {
      return this.app.listResources;
    },
    getResourceFnArgs() {
      const {
        table,
        column,
      } = this;
      return {
        table,
        column,
      };
    },
    generateMeta() {
      return {
        id: uuidv4(),
        summary: "New Row Added/Updated",
        ts: Date.now(),
      };
    },
    processResources(resources) {
      const lastTs = this.getLastTs();
      let maxTs = lastTs;

      for (const resource of resources) {
        delete resource.pdId;
        const ts = Date.parse(resource[this.timestampColumn]);
        if (ts > lastTs) {
          this.$emit(resource, this.generateMeta(resource));
          if (ts > maxTs) {
            maxTs = ts;
          }
        }
      }

      this.setLastTs(maxTs);
    },
  },
};

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
Microsoft SQL ServerappappThis component uses the Microsoft SQL Server app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling scheduletimer$.interface.timer

How often to poll the API

TabletablestringSelect a value from the drop down menu.
ColumncolumnstringSelect a value from the drop down menu.
Timestamp ColumntimestampColumnstringSelect a value from the drop down menu.

Trigger Authentication

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

Before you connect to your Microsoft SQL Server database from Pipedream, please make sure your database is either:

  1. Accessible from the public internet (You may need to add a firewall rule on 0.0.0.0/0 on port 1433), or
  2. Accessible from a static IP that you've configured from a VPC in Pipedream, and enabled the workflow to connect through that VPC

About Microsoft SQL Server

Unleash the power of your data—on-premises, in the cloud, or at the edge—and reveal insights to transform your business.

Action

Description:Uploads a channel banner image to YouTube. [See the documentation](https://developers.google.com/youtube/v3/docs/channelBanners/insert) for more information
Version:1.0.2
Key:youtube_data_api-upload-channel-banner

YouTube Data Overview

The YouTube Data API lets you incorporate functions normally executed on the YouTube website into your own website or application. You can perform operations like searching for videos, retrieving channel data, and managing playlists. When integrated with Pipedream's serverless platform, this API can be part of automations that react to events, synchronize YouTube data with other services, or generate custom reports.

Action Code

import youtubeDataApi from "../../youtube_data_api.app.mjs";
import common from "./common.mjs";

export default {
  ...common,
  key: "youtube_data_api-upload-channel-banner",
  name: "Upload Channel Banner",
  description: "Uploads a channel banner image to YouTube. [See the documentation](https://developers.google.com/youtube/v3/docs/channelBanners/insert) for more information",
  version: "1.0.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    youtubeDataApi,
    infoAlert: {
      type: "alert",
      alertType: "info",
      content: "- Maximum file size: 6MB \n- The image must have a 16:9 aspect ratio and be at least 2048x1152 pixels \n- Accepted Media MIME types: image/jpeg, image/png, application/octet-stream",
    },
    filePath: {
      type: "string",
      label: "File Path or URL",
      description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.pdf).",
    },
    onBehalfOfContentOwner: {
      propDefinition: [
        youtubeDataApi,
        "onBehalfOfContentOwner",
      ],
    },
    ...common.props,
    syncDir: {
      type: "dir",
      accessMode: "read",
      sync: true,
      optional: true,
    },
  },
};

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
YouTube DatayoutubeDataApiappThis component uses the YouTube Data app.
File Path or URLfilePathstring

Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.pdf).

On Behalf Of Content OwneronBehalfOfContentOwnerstring

This parameter can only be used in a properly authorized request. Note: This parameter is intended exclusively for YouTube content partners.

The onBehalfOfContentOwner parameter indicates that the request's authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.

syncDirsyncDirdir

Action Authentication

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

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

emailprofilehttps://www.googleapis.com/auth/youtube.readonlyhttps://www.googleapis.com/auth/youtube.uploadhttps://www.googleapis.com/auth/youtubehttps://www.googleapis.com/auth/youtube.force-ssl

About YouTube Data

With the YouTube Data API, you can add a variety of YouTube features to your application. Use the API to upload videos, manage playlists and subscriptions, update channel settings, and more.

More Ways to Connect YouTube Data + Microsoft SQL Server

Execute Query with Microsoft SQL Server API on New Liked Videos from YouTube (Data API) API
YouTube Data + Microsoft SQL Server
 
Try it
Execute Query with Microsoft SQL Server API on New Subscriber from YouTube (Data API) API
YouTube Data + Microsoft SQL Server
 
Try it
Execute Query with Microsoft SQL Server API on New Subscription from YouTube (Data API) API
YouTube Data + Microsoft SQL Server
 
Try it
Execute Query with Microsoft SQL Server API on New Videos by Location from YouTube (Data API) API
YouTube Data + Microsoft SQL Server
 
Try it
Execute Query with Microsoft SQL Server API on New Videos by Search from YouTube (Data API) API
YouTube Data + Microsoft SQL Server
 
Try it
New Column from the Microsoft SQL Server API

Triggers when a new column is added to a table. See the documentation

 
Try it
New Or Updated Row from the Microsoft SQL Server API

Triggers when a new row is added or an existing row is updated. See the documentation

 
Try it
New Comment In Channel from the YouTube Data API

Emit new event for each new comment or reply posted to a Youtube channel (or any of its videos).

 
Try it
New Comment Posted from the YouTube Data API

Emit new event for each new comment or reply posted to a Youtube video.

 
Try it
New Liked Videos from the YouTube Data API

Emit new event for each new Youtube video liked by the authenticated user.

 
Try it
Execute Query with the Microsoft SQL Server API

Executes a SQL query and returns the results. See the documentation

 
Try it
Execute SQL Query with the Microsoft SQL Server API

Execute a custom SQL query. See our docs to learn more about working with SQL in Pipedream.

 
Try it
Insert Row with the Microsoft SQL Server API

Inserts a new row in a table. See the documentation

 
Try it
Query SQL Database with the Microsoft SQL Server API

Execute a SQL Query. See our docs to learn more about working with SQL in Pipedream.

 
Try it
Add Playlist Items with the YouTube Data API

Adds resources to a playlist. See the documentation for more information

 
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.