TRIGGERcmd

TRIGGERcmd is a cloud service that allows you to securely and remotely run commands on your computers. Your commands could install updates, open your garage, run a script, or anything else you decide.

Go to site
Explore
/
Apps
/
TRIGGERcmd

TRIGGERcmd API Integrations

Build and run workflows using the TRIGGERcmd API. Use 1000s of source-available triggers and actions across 1,600+ apps. Or write custom code to integrate any app or API in seconds.

Overview

TRIGGERcmd is an innovative cloud-based automation platform with a user-friendly API that allows you to control your digital world from anywhere. With the TRIGGERcmd API, you can access everything from medical equipment to home entertainment systems, and even software development tools. No matter what type of system you're trying to manage, TRIGGERcmd can help you get it done quickly and easily. Here are just a few of the possibilities:

  • Automate backups of your data: Backing up your data has never been easier. The TRIGGERcmd API allows you to quickly set up automated backups of all your important files and documents.
  • Connect to home entertainment systems: If you've ever wanted to control your home entertainment system remotely, then the TRIGGERcmd API is for you. You can quickly connect your system to the cloud and start controlling it from anywhere.
  • Control medical equipment remotely: With the TRIGGERcmd API, you can control your medical equipment from any location to keep patients safe and healthy.
  • Access software development tools: With the TRIGGERcmd API, you can access a variety of software development tools to speed up development and improve product quality.
  • Automate tasks: Automating tedious tasks has never been simpler. The TRIGGERcmd API makes it easy to set up automated tasks that save you time and energy.
  • Control appliances: With the TRIGGERcmd API, you can easily control any appliance in your home remotely, letting you adjust settings and access features on the fly.

You can use the TRIGGERcmd API to take control of your digital world. Whether you're a medical professional, a software developer, or a home entertainment enthusiast, the TRIGGERcmd API can help you get the most out of your systems.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    triggercmd: {
      type: "app",
      app: "triggercmd",
    }
  },
  async run({steps, $}) {
    const data = {
      "computer": `insert_computer_name_here`,
      "trigger": `insert_trigger_name_here`,
    }
    return await axios($, {
      method: "post",
      url: `https://www.triggercmd.com/oauth/pipedream`,
      headers: {
        Authorization: `Bearer ${this.triggercmd.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Choose an API to Connect with TRIGGERcmd API

1
-
12
of
1,600+
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.
Beta
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
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.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
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.
Trigger a command with TRIGGERcmd API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Message from Discord API
Discord + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Message in Channel from Discord Bot API
Discord Bot + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Submission from Typeform API
Typeform + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on Custom Events from Zoom API
Zoom + TRIGGERcmd
 
Try it
Trigger a command with the TRIGGERcmd API

Runs a command on a computer. Refer to the TRIGGERcmd Forum to learn more.

 
Try it

Authentication

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

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

OAuth Request Configurations:
  1. authorization
    GEThttps://www.triggercmd.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://www.triggercmd.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://www.triggercmd.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}